/* ========================================
   CSS Variables & Root Styles
   ======================================== */
:root {
    /* Base Colors */
    --ivory: #F5F1E8;
    --charcoal: #1C1C1C;
    --soft-gray: #8E8A84;
    --mist-gray: #E7E2DA;

    /* Accent Colors (Limited Use) */
    --moss-green: #5E6B4E;
    --clay: #C08A6E;
    --rust: #A4573A;

    /* Section Background Rhythm */
    --bg-section-a: #F5F1E8;
    --bg-section-b: #F2EEE5;
    --bg-section-c: #EFE9DE;

    /* Legacy support */
    --primary-color: var(--charcoal);
    --secondary-color: var(--soft-gray);
    --text-dark: var(--charcoal);
    --text-light: #f8f8f8;
    --bg-light: var(--bg-section-b);
    --bg-white: var(--ivory);
    --border-color: var(--mist-gray);
    --shadow: rgba(0, 0, 0, 0.05);
    --transition: all 0.25s ease;
}

/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal);
    line-height: 1.65;
    background-color: var(--ivory);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Heading - Desktop: 56-64px, Mobile: 36-42px */
h1 {
    font-size: 3.5rem; /* 56px */
    font-weight: 500;
    letter-spacing: -1px;
}

/* Section Headings - Desktop: 30-38px, Mobile: 24-28px */
h2 {
    font-size: 2.125rem; /* 34px */
    font-weight: 500;
}

h3 {
    font-size: 1.5rem; /* 24px */
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Layout & Container
   ======================================== */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ========================================
   New Header Design - Sticky with Ivory Background
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.site-header.scrolled {
    background-color: var(--ivory);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.header-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    transition: var(--transition);
}

.header-brand a:hover {
    opacity: 0.7;
}

.header-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    font-weight: 500;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-button {
    background-color: var(--moss-green);
    color: var(--ivory);
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    background-color: var(--rust);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-switcher a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 0.4rem 0.6rem;
}

.language-switcher a:hover {
    color: var(--primary-color);
}

.language-switcher a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.language-switcher .separator {
    color: var(--border-color);
    font-size: 0.8rem;
}

/* Mobile Menu Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    z-index: 1003;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle:hover span {
    background-color: var(--accent-color);
}

/* Animated hamburger */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }

    .header-left {
        gap: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 0;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .header-nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1000;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: #FFFFFF;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        text-align: left;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 6rem 0 2rem;
        gap: 0;
        justify-content: flex-start;
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1001;
        pointer-events: auto;
    }

    .nav-menu a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1rem;
        color: var(--charcoal);
        transition: all 0.2s ease;
    }

    .nav-menu a:hover {
        background: var(--ivory);
        padding-left: 2.5rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a.active {
        background: var(--ivory);
        border-left: 3px solid var(--moss-green);
        font-weight: 600;
        color: var(--moss-green);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .header-brand a {
        font-size: 1.5rem;
    }

    /* Overlay when menu is open */
    .nav-menu.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(28, 28, 28, 0.2);
        z-index: -1;
        pointer-events: auto;
        backdrop-filter: blur(2px);
    }

    /* Move language switcher to mobile menu */
    .language-switcher {
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        justify-content: flex-start;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    height: 90vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)),
                      url('/images/IMG_9354.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--text-light);
    min-height: 400px;
}

.hero-content {
    max-width: 700px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    line-height: 1.8;
}


/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 250ms ease;
}

/* Primary Button - Moss Green background, Ivory text */
.btn-primary {
    background-color: var(--moss-green);
    color: var(--ivory);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: var(--rust);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Secondary Button - Moss Green background, Ivory text */
.btn-secondary {
    background-color: var(--moss-green);
    color: var(--ivory);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background-color: var(--rust);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-light {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-light:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* ========================================
   Grid Layouts
   ======================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ========================================
   Content Blocks
   ======================================== */
.content-block h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
}

.content-block p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    line-height: 2;
}

.feature-image {
    border-radius: 0;
    width: 100%;
    object-fit: cover;
}

/* ========================================
   Section Titles
   ======================================== */
.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ========================================
   Service Cards
   ======================================== */
.service-card {
    background: var(--bg-white);
    border-radius: 0;
    padding: 0;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-image {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%);
}

.service-card:hover .service-image img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    font-size: 1.5rem; /* 24px - ensuring consistent size */
}

.service-card p {
    color: var(--accent-color);
    font-weight: 300;
    line-height: 1.8;
}

/* ========================================
   Service Detail
   ======================================== */
.service-detail {
    margin-bottom: 3rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonial-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 0;
    border-left: 1px solid var(--border-color);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 2;
}

.testimonial-author {
    font-weight: 300;
    color: var(--primary-color);
    text-align: right;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ========================================
   Package Cards
   ======================================== */
.package-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.package-card.featured {
    border: 1px solid var(--primary-color);
    position: relative;
    transform: scale(1.02);
}

.package-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.package-card ul li {
    padding: 0.6rem 0;
    color: var(--accent-color);
    font-weight: 300;
    font-size: 0.9rem;
}

/* ========================================
   Philosophy Cards
   ======================================== */
.philosophy-card {
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.philosophy-card p {
    color: var(--accent-color);
    font-weight: 300;
    line-height: 1.9;
}

/* ========================================
   Certifications
   ======================================== */
.certifications {
    max-width: 700px;
    margin: 0 auto;
}

.certifications ul {
    list-style: none;
}

.certifications ul li {
    padding: 1.2rem 1.5rem;
    margin-bottom: 0.8rem;
    background: var(--bg-white);
    border-left: 1px solid var(--primary-color);
    border-radius: 0;
    font-weight: 300;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

/* ========================================
   Forms
   ======================================== */
.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ========================================
   Contact Info
   ======================================== */
.contact-info {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.spiritual-quote {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.spiritual-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

.quote-author {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
}

/* ========================================
   CTA Section - Homepage
   ======================================== */
.cta-section {
    background-color: var(--ivory);
}

.cta-section .container {
    display: flex;
    justify-content: center;
}

.cta-section .cta-content {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 3rem;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* ========================================
   Final CTA Section - Process Page
   ======================================== */
.final-cta {
    background-color: var(--ivory);
    text-align: center;
}

.final-cta .container {
    margin: 0 auto;
}

.final-cta .cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

/* CTA Buttons */
.btn-final-cta {
    background-color: var(--moss-green);
    color: var(--ivory);
    padding: 1rem 2.5rem;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background-color: var(--rust);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
                      url('/images/IMG_9353.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    text-align: center;
    padding: 6rem 2rem 5rem;
    position: relative;
    min-height: 300px;
}

.page-header h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.3rem;
}

.footer-section p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.6;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.5;
    font-style: italic;
    margin-top: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Image Gallery
   ======================================== */
.image-gallery-item {
    overflow: hidden;
    border-radius: 0;
    transition: var(--transition);
}

.image-gallery-item:hover {
    transform: translateY(-2px);
}

.image-gallery-item img {
    transition: var(--transition);
    filter: grayscale(15%);
}

.image-gallery-item:hover img {
    transform: scale(1.02);
    filter: grayscale(0%);
}

.gallery-section {
    background: var(--bg-white);
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

/* ========================================
   Additional Responsive Design
   ======================================== */
/* Tablet Responsive */
@media (max-width: 992px) {
    .section {
        padding: 72px 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    /* Typography Scale - Mobile */
    h1 {
        font-size: 2.375rem; /* 38px */
    }

    h2 {
        font-size: 1.625rem; /* 26px */
    }

    h3 {
        font-size: 1.25rem; /* 20px */
    }

    .section {
        padding: 56px 0;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.375rem; /* 38px - Mobile hero size */
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .section {
        padding: 3rem 0;
    }

    .page-header {
        padding: 4rem 2rem 3rem;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }

    .service-image {
        height: 250px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        width: 100%;
        max-width: 100%;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .hero {
        height: 60vh;
        min-height: 400px;
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .header-brand a {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .service-card {
        padding: 0;
    }

    .service-card h3 {
        font-size: 1.25rem; /* 20px - consistent mobile size */
    }

    .service-image {
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .package-card {
        padding: 2rem 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .page-header {
        padding: 3rem 1.5rem 2.5rem;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }

    .header-top {
        padding: 0.5rem 1rem;
        padding-right: 4rem;
    }

    .nav-toggle {
        right: 1rem;
    }

    .nav-toggle span {
        width: 22px;
    }

    .social-links {
        justify-content: center;
    }

    .language-switcher {
        position: static;
        transform: none;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        justify-content: flex-start;
    }

    .language-switcher a {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .header-brand {
        padding: 1.2rem 0 0.8rem;
    }
}

/* Extra small devices (360px and similar) */
@media (max-width: 380px) {
    .container {
        padding: 0 0.75rem;
    }

    .header-brand a {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .nav-menu a {
        padding: 1.2rem 1.5rem;
        font-size: 0.7rem;
    }

    .language-switcher {
        position: static;
        transform: none;
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        justify-content: flex-start;
    }

    .language-switcher a {
        padding: 0.25rem 0.4rem;
        font-size: 0.65rem;
    }

    .language-switcher .separator {
        margin: 0 0.1rem;
    }

    .nav-toggle {
        right: 0.75rem;
        padding: 0.3rem;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.7rem;
    }

    .hero {
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }

    .page-header {
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }
}

/* ========================================
   Language Switcher
   ======================================== */
.header-top {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-switcher a {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 0.3rem 0.5rem;
}

.language-switcher a:hover {
    color: var(--primary-color);
}

.language-switcher a.active {
    color: var(--primary-color);
    font-weight: 500;
}

.language-switcher .separator {
    color: var(--border-color);
    font-size: 0.7rem;
}

/* ========================================
   Professional Animations
   ======================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header {
    animation: fadeInDown 0.6s ease-out;
}

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

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

/* Skip to main content link (accessibility) */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
}

/* ========================================
   New Homepage Sections
   ======================================== */

/* Problem Section */
.problem-section {
    background-color: var(--bg-section-a);
}

.problem-section .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    max-width: 900px;
}

.problem-list li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    line-height: 1.8;
    text-indent: 0;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    color: var(--charcoal);
    font-size: 1.5rem;
    line-height: 1;
}

.section-intro {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    color: var(--soft-gray);
}

.section-closing {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* What We Do Section */
.what-we-do {
    background-color: var(--bg-section-b);
}

.what-we-do .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.what-we-do .content-block p {
    margin-bottom: 1.2rem;
}

/* Service Preview Section */
.services-preview {
    background-color: var(--bg-section-a);
}

.services-preview .grid-2 {
    align-items: stretch;
}

.service-card {
    background: white;
    border: 1px solid var(--mist-gray);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-subtitle {
    font-size: 0.95rem;
    color: var(--soft-gray);
    margin: 0.5rem 0 1.5rem 0;
}

.service-description {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--charcoal);
    margin: 1.5rem 0;
}

.service-card .btn {
    margin-top: auto;
}

.service-help {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: white;
    border: 1px solid var(--mist-gray);
    border-radius: 12px;
}

.service-help p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Framework Section */
.framework {
    background-color: var(--bg-section-b);
}

.framework .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

/* Process Summary Section */
.process-summary {
    background-color: var(--bg-section-a);
}

.process-summary .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--soft-gray);
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-section-b);
    padding: 4rem 0;
}

.testimonial-placeholder {
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--soft-gray);
}

.process-step h3 {
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }

    .process-step {
        min-width: 100%;
    }

    .step-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   Process Page Styles
   ======================================== */

.process-hero {
    min-height: 60vh;
}

.process-step-section {
    padding: 4rem 0;
}

.process-step-section .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.process-step-detail {
    max-width: 900px;
    margin: 0 auto;
}

.step-number-large {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--soft-gray);
    font-weight: 300;
    margin-bottom: 1rem;
}

.format-list {
    list-style: none;
    padding: 1rem 0;
    margin: 1.5rem 0;
}

.format-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.format-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--moss-green);
}

.simple-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.simple-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.7;
}

.simple-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--charcoal);
}

.faq-section {
    padding: 4rem 0;
}

.faq-section .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.faq-item {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.faq-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.faq-item p {
    margin-bottom: 0.8rem;
}

.who-for-section {
    padding: 4rem 0;
}

.who-for-section .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    line-height: 1.7;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--moss-green);
    font-size: 1.3rem;
    font-weight: bold;
}

.cross-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.cross-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    line-height: 1.7;
    color: var(--soft-gray);
}

.cross-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--rust);
    font-size: 1.5rem;
    font-weight: bold;
}

.final-cta {
    padding: 4rem 0;
}

.final-cta .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

@media (max-width: 768px) {
    .step-number-large {
        font-size: 3.5rem;
    }

    .process-step-section {
        padding: 3rem 0;
    }
}

/* ========================================
   About Page
   ======================================== */
.about-content {
    background-color: var(--ivory);
    padding: 4rem 0;
}

.about-content .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.about-section {
    margin-bottom: 4rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: var(--charcoal);
}

.about-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.about-list li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--charcoal);
    font-size: 1.3rem;
}

/* ========================================
   Services Page
   ======================================== */
.services-intro {
    background-color: var(--ivory);
}

.services-intro .container {
    display: flex;
    justify-content: center;
}

.services-intro .services-intro-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.services-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.services-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.service-detail-section {
    background-color: var(--ivory);
}

.service-card-full {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
    max-width: 900px;
    margin: 0 auto;
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--charcoal);
}

.service-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 2rem 0 1rem 0;
}

.service-list {
    list-style: none;
    margin: 1rem 0 1.5rem 0;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.7;
    font-size: 1rem;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--moss-green);
    font-size: 1.3rem;
}

.service-details {
    margin: 2rem 0 1.5rem 0;
    padding: 1.5rem;
    border-left: 3px solid var(--moss-green);
}

.service-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-details p:last-child {
    margin-bottom: 0;
}

.service-note {
    font-style: italic;
    color: var(--soft-gray);
    margin: 1.5rem 0;
}

.service-cta {
    margin-top: 2rem;
    text-align: center;
}

.help-choosing {
    background-color: var(--ivory);
}

.help-choosing .container {
    display: flex;
    justify-content: center;
}

.help-choosing .help-choosing-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
    text-align: center;
    width: 100%;
    max-width: 900px;
}

@media (max-width: 768px) {
    .service-card-full {
        padding: 2rem 1.5rem;
    }
    
    .services-main-title {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
}

/* ========================================
   Process Page Updates
   ======================================== */
.process-intro {
    background-color: var(--ivory);
}

.process-intro .container {
    display: flex;
    justify-content: center;
}

.process-intro .process-intro-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.process-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.process-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.process-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.7;
    font-size: 1rem;
}

.process-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--moss-green);
    font-size: 1.3rem;
}

.process-list.no-list li:before {
    content: "×";
    color: var(--soft-gray);
}


@media (max-width: 768px) {
    .process-main-title {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
}

/* ========================================
   Application/Contact Forms Page
   ======================================== */
.application-page {
    background-color: var(--ivory);
    padding: 3rem 0;
    padding-bottom: 5rem 0;
}

.form-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--mist-gray);
    flex-wrap: wrap;
}

.form-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--soft-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.form-tab:hover {
    color: var(--charcoal);
    background: rgba(94, 107, 78, 0.05);
}

.form-tab.active {
    color: var(--moss-green);
    border-bottom-color: var(--moss-green);
    font-weight: 600;
}

.form-container {
    display: none;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.form-container.active {
    display: block;
}

.form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--soft-gray);
    margin-bottom: 2.5rem;
}

.application-form .form-group {
    margin-bottom: 1.5rem;
}

.application-form label {
    display: block;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form select {
    width: 100%;
    height: 54px;
    padding: 0 1.25rem;
    border: 1px solid var(--mist-gray);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.application-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--mist-gray);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
    min-height: 120px;
}

.application-form input[type="text"]:focus,
.application-form input[type="email"]:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--moss-green);
    box-shadow: 0 0 0 2px rgba(94, 107, 78, 0.1);
}

.application-form input[type="file"] {
    padding: 0.5rem 0;
}

.application-form small {
    display: block;
    margin-top: 0.5rem;
    color: var(--soft-gray);
    font-size: 0.875rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group span {
    flex: 1;
    font-weight: 400;
    line-height: 1.6;
}

.success-message {
    background: rgba(94, 107, 78, 0.1);
    border-left: 4px solid var(--moss-green);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
}

.success-message p {
    margin: 0;
    color: var(--charcoal);
}

@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .form-tab {
        width: 100%;
        text-align: left;
        padding: 1rem;
        border-bottom: 1px solid var(--mist-gray);
    }
    
    .form-title {
        font-size: 1.6rem;
    }
}

/* ========================================
   Confirmation Page
   ======================================== */
.confirmation-page {
    background-color: var(--ivory);
    padding: 6rem 0;
    min-height: 60vh;
}

.confirmation-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: var(--moss-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 300;
}

.confirmation-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.confirmation-message {
    margin: 2rem 0 3rem;
}

.confirmation-message p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.confirmation-actions {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .confirmation-page {
        padding: 4rem 0;
    }

    .confirmation-card {
        padding: 3rem 2rem;
    }

    .confirmation-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .confirmation-title {
        font-size: 1.6rem;
    }

    .confirmation-message p {
        font-size: 1rem;
    }
}

/* ========================================
   404 Error Page
   ======================================== */
.error-page {
    background-color: var(--ivory);
    padding: 6rem 0;
    min-height: 60vh;
}

.error-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    border: 1px solid var(--mist-gray);
}

.error-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 8rem;
    font-weight: 300;
    color: var(--soft-gray);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.error-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .error-page {
        padding: 4rem 0;
    }

    .error-card {
        padding: 3rem 2rem;
    }

    .error-number {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.6rem;
    }

    .error-message {
        font-size: 1rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }
}
