/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Australia-inspired Color Palette */
    --primary-color: #1e3a8a; /* Deep blue */
    --secondary-color: #059669; /* Green */
    --accent-color: #f59e0b; /* Golden yellow */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-gray: #f9fafb;
    --medium-gray: #e5e7eb;
    --dark-gray: #374151;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Georgia', 'Times New Roman', serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: var(--space-md) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    margin: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.menu-icon, .close-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.close-icon {
    display: none;
}

/* Hero Section */
.hero {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--space-2xl);
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
}

/* About Section */
.about {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--space-3xl);
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: var(--space-3xl) 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.service-features li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.testimonial-card {
    background-color: var(--light-gray);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: var(--font-secondary);
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.author-role {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Blog Section */
.blog {
    padding: var(--space-3xl) 0;
    background-color: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: var(--space-lg);
}

.blog-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
}

.blog-date {
    color: var(--text-light);
}

.blog-category {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.blog-title a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-top: var(--space-sm);
}

/* Contact Section */
.contact {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-icon .icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-details a {
    color: var(--primary-color);
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Form Styles */
.contact-form {
    background-color: var(--light-gray);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--error);
}

.form-group.error .error-message {
    display: block;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo .logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-lg);
}

.footer-description {
    color: var(--medium-gray);
    margin-bottom: var(--space-lg);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--medium-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    list-style: none;
    color: var(--medium-gray);
}

.footer-contact li {
    margin-bottom: var(--space-sm);
}

.footer-contact a {
    color: var(--medium-gray);
}

.footer-contact a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition);
    opacity: 0.7;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--dark-gray);
    color: var(--medium-gray);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #828eaf;
    color: var(--white);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.cookie-text h4 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cookie-text p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    font-size: 0.875rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

.cookie-category {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--medium-gray);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.cookie-category p {
    margin-top: var(--space-sm);
    margin-left: 32px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.cookie-modal-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.cookie-modal-buttons button {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

/* Thank You Page */
.thank-you {
    padding: var(--space-3xl) 0;
    background-color: var(--light-gray);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: var(--space-xl);
}

.thank-you-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-2xl);
}

.thank-you-info {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-2xl);
    text-align: left;
}

.thank-you-info h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    text-align: center;
}

.thank-you-steps {
    list-style: none;
    counter-reset: step;
}

.thank-you-steps li {
    counter-increment: step;
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

.thank-you-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.thank-you-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.thank-you-contact {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.thank-you-contact a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Legal Pages */
.legal-page {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

.last-updated {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: var(--space-2xl);
    font-style: italic;
}

.legal-section {
    margin-bottom: var(--space-2xl);
}

.legal-section h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--medium-gray);
}

.legal-section h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-section h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
}

.legal-section ul,
.legal-section ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-section li {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.legal-section strong {
    color: var(--text-dark);
}

/* Blog Post Pages */
.blog-post {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.blog-post-header .blog-meta {
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.blog-read-time {
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-post-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-2xl);
    color: var(--text-dark);
    line-height: 1.2;
}

.blog-post-image {
    margin-bottom: var(--space-2xl);
}

.blog-post-image .blog-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.7;
}

.blog-intro {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg);
    background-color: var(--light-gray);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.blog-post-content h2 {
    font-size: 1.875rem;
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

.blog-post-content h3 {
    font-size: 1.5rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.blog-post-content li {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.blog-post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-cta {
    background-color: var(--light-gray);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    margin: var(--space-3xl) 0;
    border: 2px solid var(--primary-color);
}

.blog-cta h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.blog-cta p {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.blog-post-footer {
    max-width: 800px;
    margin: var(--space-3xl) auto 0;
    padding-top: var(--space-2xl);
    border-top: 2px solid var(--medium-gray);
}

.blog-author {
    background-color: var(--light-gray);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.blog-author h4 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.blog-author p {
    color: var(--text-light);
    margin: 0;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--space-2xl);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle.active .menu-icon {
        display: none;
    }
    
    .nav-toggle.active .close-icon {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-navigation {
        flex-direction: column;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .service-card,
    .testimonial-card {
        padding: var(--space-lg);
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .cookie-modal {
        padding: var(--space-md);
    }
    
    .cookie-modal-content {
        padding: var(--space-lg);
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .blog-post-title {
        font-size: 1.75rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .cookie-modal,
    .nav-toggle {
        display: none;
    }
    
    .hero,
    .about,
    .services,
    .testimonials,
    .blog,
    .contact {
        padding: var(--space-lg) 0;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        break-inside: avoid;
    }
    
    a {
        color: var(--text-dark) !important;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-light: var(--text-dark);
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    }
    
    .btn-secondary {
        background-color: var(--white);
        border-width: 3px;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        border: 2px solid var(--medium-gray);
    }
}

/* Focus styles for better accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary:focus,
.btn-secondary:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}
