:root {
    --forest: #173b35;
    --forest-dark: #102c28;
    --sage: #6f8f7b;
    --mint: #dce9e1;
    --beige: #e9ddc8;
    --cream: #faf8f3;
    --white: #ffffff;
    --text: #26332f;
    --muted: #71807a;
    --border: #dce4df;
    --gold: #b49a6c;
    --shadow: 0 20px 50px rgba(23, 59, 53, 0.10);

    --heading: "Playfair Display", serif;
    --body: "DM Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 243, 0.94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(23, 59, 53, 0.08);
}

.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--forest);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.15;
}

.logo small {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    font-family: var(--heading);
    font-size: 22px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav > a {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.main-nav > a:hover {
    color: var(--sage);
}

.main-nav .nav-button {
    padding: 12px 20px;
    border-radius: 30px;
    background: var(--forest);
    color: var(--white);
}

.main-nav .nav-button:hover {
    background: var(--sage);
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--forest);
    margin: 5px auto;
    transition: 0.3s;
}

/* Hero */

.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 35%, rgba(111, 143, 123, 0.20), transparent 28%),
        var(--cream);
}

.hero-pattern {
    position: absolute;
    width: 550px;
    height: 550px;
    border: 1px solid rgba(111, 143, 123, 0.18);
    border-radius: 50%;
    right: -220px;
    top: -150px;
}

.hero-pattern::before,
.hero-pattern::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(111, 143, 123, 0.15);
    border-radius: 50%;
}

.hero-pattern::before {
    inset: 60px;
}

.hero-pattern::after {
    inset: 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sage);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.eyebrow span {
    width: 28px;
    height: 1px;
    background: var(--sage);
}

.hero h1 {
    font-family: var(--heading);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--forest);
    margin: 25px 0;
    max-width: 700px;
}

.hero h1 em {
    display: block;
    font-style: normal;
    color: var(--sage);
}

.hero-content > p {
    max-width: 590px;
    color: var(--muted);
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 15px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.btn span {
    font-size: 19px;
    line-height: 0;
}

.btn-primary {
    background: var(--forest);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--sage);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--forest);
    color: var(--forest);
    background: transparent;
}

.btn-outline:hover {
    background: var(--forest);
    color: var(--white);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    margin-top: 30px;
}

.note-icon {
    color: var(--gold);
    font-size: 18px;
}

/* Hero Art */

.hero-art {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.main-art-card {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 400px;
    border-radius: 160px 160px 25px 25px;
    background: var(--forest);
    color: var(--white);
    padding: 65px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.main-art-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -80px;
    left: 30px;
}

.main-art-card .leaf-symbol {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 85px;
    color: var(--mint);
    opacity: 0.9;
}

.main-art-card span {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--mint);
}

.main-art-card strong {
    font-family: var(--heading);
    font-size: 29px;
    line-height: 1.2;
    margin: 8px 0;
}

.main-art-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.art-orbit {
    position: absolute;
    border: 1px solid rgba(111, 143, 123, 0.30);
    border-radius: 50%;
}

.orbit-one {
    width: 500px;
    height: 500px;
}

.orbit-two {
    width: 420px;
    height: 420px;
}

.floating-card {
    position: absolute;
    z-index: 3;
    background: var(--white);
    padding: 14px 18px;
    min-width: 100px;
    box-shadow: var(--shadow);
    border-radius: 5px;
}

.floating-card span {
    display: block;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
}

.floating-card p {
    color: var(--forest);
    font-weight: 700;
    font-size: 14px;
}

.floating-top {
    top: 55px;
    right: 10px;
}

.floating-bottom {
    bottom: 35px;
    left: 5px;
}

/* Intro */

.intro-strip {
    background: var(--forest);
    color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.intro-item {
    display: flex;
    gap: 18px;
    padding: 32px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.intro-item:first-child {
    padding-left: 0;
}

.intro-item:last-child {
    border-right: 0;
}

.intro-number {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.intro-item h3 {
    font-size: 15px;
    margin-bottom: 3px;
}

.intro-item p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

/* General Section */

.section {
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    align-items: center;
}

.visual-box {
    height: 500px;
    background: var(--mint);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.circle-large {
    position: absolute;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(23, 59, 53, 0.20);
    border-radius: 50%;
    left: -110px;
    top: -70px;
}

.circle-small {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    right: -70px;
    bottom: -50px;
}

.visual-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: var(--forest);
}

.visual-content > span {
    display: block;
    font-family: var(--heading);
    font-size: 80px;
    line-height: 0.8;
    margin-bottom: 25px;
}

.visual-content h3 {
    font-family: var(--heading);
    font-size: 42px;
    line-height: 1.02;
}

.section-label {
    margin-bottom: 17px;
}

.about-content h2,
.section-heading h2,
.process-heading h2,
.enquiry-info h2,
.address-title h2,
.contact-information h2 {
    font-family: var(--heading);
    font-size: clamp(36px, 4vw, 53px);
    line-height: 1.12;
    color: var(--forest);
    font-weight: 600;
}

.about-content h2 span,
.section-heading h2 span,
.process-heading h2 span,
.enquiry-info h2 span,
.address-title h2 span,
.contact-information h2 span {
    color: var(--sage);
}

.about-content > p,
.section-heading > p,
.process-heading > p,
.enquiry-info > p,
.contact-information > p {
    color: var(--muted);
    font-size: 15px;
    margin-top: 20px;
}

.about-points {
    margin: 28px 0;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
}

.about-points span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mint);
    color: var(--forest);
    font-size: 12px;
    font-weight: 700;
}

.about-points p {
    font-size: 13px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--forest);
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid var(--forest);
    padding-bottom: 5px;
}

.text-link span {
    font-size: 18px;
}

/* Services */

.services-section {
    background: #f1eee7;
}

.section-heading {
    max-width: 650px;
}

.centered {
    text-align: center;
    margin: 0 auto 55px;
}

.centered .section-label {
    justify-content: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-card {
    position: relative;
    background: var(--white);
    min-height: 350px;
    padding: 35px 27px;
    overflow: hidden;
    transition: 0.35s;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--mint);
    box-shadow: var(--shadow);
}

.service-card.featured {
    background: var(--forest);
    color: var(--white);
}

.service-icon {
    font-size: 35px;
    color: var(--sage);
    margin-bottom: 50px;
}

.featured .service-icon {
    color: var(--mint);
}

.service-number {
    position: absolute;
    top: 36px;
    right: 25px;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
}

.service-card h3 {
    font-family: var(--heading);
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--muted);
    font-size: 13px;
}

.featured p {
    color: rgba(255, 255, 255, 0.65);
}

.card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s;
}

.service-card:hover .card-line {
    transform: scaleX(1);
}

/* Process */

.process-section {
    background: var(--cream);
}

.process-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.process-heading > p {
    max-width: 470px;
}

.process-list {
    border-top: 1px solid var(--border);
}

.process-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.process-number {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
}

.process-item h3 {
    color: var(--forest);
    font-family: var(--heading);
    font-size: 23px;
    margin-bottom: 5px;
}

.process-item p {
    color: var(--muted);
    font-size: 13px;
}

/* Enquiry */

.enquiry-section {
    background: var(--mint);
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.contact-mini {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 25px;
}

.mini-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--forest);
    border-radius: 50%;
}

.contact-mini small {
    display: block;
    color: var(--sage);
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}

.contact-mini p {
    color: var(--forest);
    font-size: 13px;
}

.form-card {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 25px 70px rgba(23, 59, 53, 0.10);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--forest);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #fcfcfa;
    padding: 13px 15px;
    color: var(--text);
    font-size: 13px;
    outline: none;
    transition: 0.3s;
    border-radius: 2px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(111, 143, 123, 0.10);
}

.form-submit {
    width: 100%;
    border: 0;
}

.form-message {
    display: none;
    margin-top: 15px;
    padding: 12px 15px;
    font-size: 13px;
    background: var(--mint);
    color: var(--forest);
}

.form-message.show {
    display: block;
}

/* Address */

.address-section {
    padding: 80px 0;
    background: var(--cream);
}

.address-box {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    padding: 55px;
    background: var(--forest);
    color: var(--white);
}

.address-title h2 {
    color: var(--white);
}

.address-title h2 span {
    color: var(--mint);
}

.address-details {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.address-details address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
}

.address-details address strong {
    color: var(--white);
    font-size: 17px;
}

.address-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address-contact a {
    color: var(--mint);
    font-size: 14px;
}

.address-contact span {
    color: var(--gold);
    font-size: 12px;
}

/* Footer */

.site-footer {
    background: var(--forest-dark);
    color: var(--white);
}

.footer-grid {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;
    gap: 50px;
}

.footer-logo {
    color: var(--white);
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    max-width: 300px;
    margin-top: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    min-height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.40);
    font-size: 11px;
}

/* Page Hero */

.page-hero {
    padding: 130px 0;
    background:
        radial-gradient(circle at 85% 50%, rgba(111, 143, 123, 0.20), transparent 25%),
        var(--mint);
}

.small-page-hero {
    padding: 105px 0;
}

.page-hero-content {
    max-width: 720px;
}

.page-hero h1 {
    font-family: var(--heading);
    color: var(--forest);
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1.05;
    margin: 20px 0;
}

.page-hero h1 span {
    color: var(--sage);
}

.page-hero p {
    color: var(--muted);
    font-size: 16px;
}

/* Contact Page */

.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.contact-detail {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.detail-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: var(--mint);
    border-radius: 50%;
    color: var(--forest);
}

.contact-detail small {
    display: block;
    color: var(--sage);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.contact-detail address,
.contact-detail a {
    color: var(--text);
    font-style: normal;
    font-size: 13px;
    display: block;
}

.contact-detail a:hover {
    color: var(--sage);
}

.gst-box {
    margin-top: 35px;
    border-left: 3px solid var(--gold);
    padding: 10px 15px;
    background: #f1eee7;
}

.gst-box span {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--sage);
}

.gst-box strong {
    font-size: 14px;
    color: var(--forest);
}

.form-header {
    margin-bottom: 30px;
}

.form-header > span {
    color: var(--sage);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}

.form-header h3 {
    font-family: var(--heading);
    color: var(--forest);
    font-size: 32px;
    margin-top: 5px;
}

.contact-banner {
    padding: 40px 0 90px;
    background: var(--cream);
}

.contact-banner-inner {
    background: var(--forest);
    padding: 45px 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.contact-banner h2 {
    color: var(--white);
    font-family: var(--heading);
    font-size: 35px;
}

.contact-banner .section-label {
    color: var(--mint);
}

.btn-light {
    background: var(--white);
    color: var(--forest);
}

.btn-light:hover {
    background: var(--mint);
}

/* Legal */

.legal-section {
    padding: 90px 0;
    background: var(--cream);
}

.legal-content {
    max-width: 850px;
    margin: auto;
    background: var(--white);
    padding: 55px;
    box-shadow: 0 10px 40px rgba(23, 59, 53, 0.05);
}

.updated-date {
    color: var(--sage);
    font-size: 12px;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-content h2 {
    color: var(--forest);
    font-family: var(--heading);
    font-size: 26px;
    margin: 35px 0 12px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--muted);
    font-size: 14px;
}

.legal-contact {
    margin-top: 30px;
    padding: 25px;
    background: var(--mint);
}

.legal-contact strong {
    color: var(--forest);
}

.legal-contact a {
    color: var(--forest);
    font-weight: 600;
}

/* Animations */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back To Top */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 500;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--sage);
}

/* Responsive */

@media (max-width: 1000px) {

    .main-nav {
        gap: 20px;
    }

    .hero-grid,
    .about-grid,
    .process-grid,
    .enquiry-wrapper,
    .contact-grid {
        gap: 50px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 800px) {

    .nav-container {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 20px 25px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-130%);
        transition: 0.35s;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .main-nav > a {
        padding: 14px 5px;
        border-bottom: 1px solid rgba(23, 59, 53, 0.08);
    }

    .main-nav .nav-button {
        text-align: center;
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
        padding: 90px 0;
    }

    .hero-grid,
    .about-grid,
    .process-grid,
    .enquiry-wrapper,
    .contact-grid,
    .address-box {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 450px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-item,
    .intro-item:first-child {
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .intro-item:last-child {
        border-bottom: 0;
    }

    .about-grid {
        gap: 50px;
    }

    .process-grid {
        gap: 50px;
    }

    .enquiry-wrapper {
        gap: 50px;
    }

    .address-box {
        gap: 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {

    .container {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-art {
        min-height: 400px;
    }

    .main-art-card {
        width: 270px;
        height: 350px;
    }

    .orbit-one {
        width: 390px;
        height: 390px;
    }

    .orbit-two {
        width: 330px;
        height: 330px;
    }

    .floating-top {
        right: 0;
    }

    .floating-bottom {
        left: 0;
    }

    .section {
        padding: 75px 0;
    }

    .visual-box {
        height: 390px;
    }

    .visual-content {
        left: 30px;
        bottom: 30px;
    }

    .visual-content h3 {
        font-size: 35px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-card {
        padding: 25px;
    }

    .address-box {
        padding: 30px 25px;
    }

    .address-details {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
        text-align: center;
    }

    .page-hero {
        padding: 80px 0;
    }

    .page-hero h1 {
        font-size: 47px;
    }

    .legal-section {
        padding: 50px 0;
    }

    .legal-content {
        padding: 30px 22px;
    }

    .contact-banner-inner {
        padding: 35px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-banner h2 {
        font-size: 29px;
    }
}