*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest: #1A3C34;
    --forest-light: #2A5C4E;
    --forest-dark: #0F241E;
    --cream: #F2F0E9;
    --cream-light: #FAFAF7;
    --cream-dark: #E8E5DA;
    --text-dark: #1A1A18;
    --text-mid: #4A4A46;
    --text-light: #7A7A74;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(242, 240, 233, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 60, 52, 0.08);
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    background: rgba(242, 240, 233, 0.97);
    box-shadow: 0 1px 20px rgba(26, 60, 52, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--forest);
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-out);
}

.logo:hover .logo-mark {
    background: var(--forest);
    color: var(--cream);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--forest);
    letter-spacing: -0.01em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
}

.main-nav a:hover {
    color: var(--forest);
    background: rgba(26, 60, 52, 0.06);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn--primary {
    background: var(--forest);
    color: var(--cream);
}

.btn--primary:hover {
    background: var(--forest-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26, 60, 52, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--forest);
}

.btn--ghost:hover {
    background: var(--forest);
    color: var(--cream);
}

.btn--nav {
    background: var(--forest);
    color: var(--cream);
    padding: 10px 22px;
}

.btn--nav:hover {
    background: var(--forest-light);
    color: var(--cream);
}

.btn--light {
    background: var(--cream);
    color: var(--forest);
}

.btn--light:hover {
    background: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline-light {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(242, 240, 233, 0.5);
}

.btn--outline-light:hover {
    background: rgba(242, 240, 233, 0.1);
    border-color: var(--cream);
}

.btn--full {
    width: 100%;
}

/* Nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--forest);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 36, 30, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    height: 100%;
    background: var(--cream);
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
}

.nav-overlay.active .mobile-nav {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--forest);
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 60, 52, 0.1);
    transition: all 0.3s var(--ease-out);
}

.mobile-nav-link:hover {
    padding-left: 8px;
}

.mobile-nav-cta {
    margin-top: 24px;
    border-bottom: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    background: var(--forest);
    color: var(--cream);
    padding: 16px 24px;
    border-radius: 100px;
    text-align: center;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--cream-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(26, 60, 52, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--forest);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--forest);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(26, 60, 52, 0.15);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.hero-image-wrapper:hover img {
    transform: scale(1.02);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--forest);
    border-radius: 0;
    z-index: -1;
    opacity: 0.2;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto;
}

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

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(26, 60, 52, 0.12);
}

.signature-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 6px;
}

.signature-title {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--cream-light);
}

.services .section-header {
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(26, 60, 52, 0.08);
    padding: 48px 40px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--forest);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26, 60, 52, 0.08);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(26, 60, 52, 0.15);
    border-radius: 50%;
    margin-bottom: 28px;
    color: var(--forest);
    transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-icon {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--cream);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
}

/* ===== AREAS ===== */
.areas {
    padding: 120px 0;
    background: var(--forest);
    color: var(--cream);
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.areas .section-eyebrow {
    color: rgba(242, 240, 233, 0.6);
}

.areas .section-title {
    color: var(--cream);
}

.areas-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(242, 240, 233, 0.7);
    margin-bottom: 40px;
}

.areas-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.areas-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid rgba(242, 240, 233, 0.1);
    transition: all 0.3s var(--ease-out);
}

.areas-list li:hover {
    padding-left: 8px;
}

.areas-list li:last-child {
    border-bottom: none;
}

.area-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
}

.area-detail {
    font-size: 0.875rem;
    color: rgba(242, 240, 233, 0.5);
    text-align: right;
    max-width: 200px;
}

.areas-image-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.areas-image-main {
    overflow: hidden;
}

.areas-image-main img,
.areas-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.areas-image-main:hover img,
.areas-image-secondary:hover img {
    transform: scale(1.03);
}

.areas-image-secondary {
    overflow: hidden;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--cream);
}

.testimonials .section-header {
    margin-bottom: 64px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(26, 60, 52, 0.06);
    padding: 40px 32px;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26, 60, 52, 0.08);
    border-color: transparent;
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--forest);
    opacity: 0.15;
    margin-bottom: -8px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
}

.testimonial-detail {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
    background: var(--cream-light);
}

.cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 20px;
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-body {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(26, 60, 52, 0.15);
    border-radius: 50%;
    color: var(--forest);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-value {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-link {
    color: var(--forest);
    transition: all 0.3s var(--ease-out);
}

.contact-link:hover {
    color: var(--forest-light);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Form */
.contact-form-col {
    background: var(--white);
    border: 1px solid rgba(26, 60, 52, 0.08);
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1.5px solid rgba(26, 60, 52, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    transition: all 0.3s var(--ease-out);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 48px 24px;
    display: none;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--forest);
    border-radius: 50%;
    color: var(--forest);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(242, 240, 233, 0.1);
}

.logo-mark--light {
    border-color: rgba(242, 240, 233, 0.4);
    color: var(--cream);
}

.logo-text--light {
    color: var(--cream);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(242, 240, 233, 0.5);
    margin-top: 12px;
    max-width: 260px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(242, 240, 233, 0.6);
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.02em;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(242, 240, 233, 0.4);
}

.footer-bottom a {
    color: rgba(242, 240, 233, 0.5);
    transition: color 0.3s var(--ease-out);
}

.footer-bottom a:hover {
    color: var(--cream);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .about-grid,
    .areas-grid,
    .contact-grid {
        gap: 48px;
    }

    .services-grid {
        gap: 16px;
    }

    .service-card {
        padding: 36px 28px;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .about-grid,
    .areas-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-col {
        padding: 32px 24px;
    }

    .areas-list li {
        flex-direction: column;
        gap: 4px;
    }

    .area-detail {
        text-align: left;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
