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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #ffffff;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    z-index: 999;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    position: fixed;
    top: 2.5rem;
    right: 3rem;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 998;
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-right: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #1a4d7a;
}

.hero-asymmetric {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 4rem 4rem;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    margin-left: 8%;
    margin-top: -5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a4d7a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 2.5rem;
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    max-width: 700px;
    transform: rotate(3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.cta-primary {
    display: inline-block;
    background-color: #1a4d7a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-primary:hover {
    background-color: #143d61;
    transform: translateY(-2px);
}

.intro-offset {
    padding: 8rem 4rem;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    background-color: #f9f9f9;
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
    margin-left: 15%;
    margin-top: 3rem;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    color: #1a4d7a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.intro-card-float {
    flex: 1;
    max-width: 450px;
    margin-right: 8%;
    margin-top: -4rem;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-card-float img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card-caption {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.services-irregular {
    padding: 8rem 4rem;
    background-color: #ffffff;
}

.section-title-left {
    font-size: 2.8rem;
    color: #1a4d7a;
    margin-bottom: 4rem;
    margin-left: 5%;
}

.service-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.service-offset-1 {
    margin-left: 10%;
    margin-right: 20%;
}

.service-offset-2 {
    margin-left: 25%;
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-offset-3 {
    margin-left: 5%;
    margin-right: 25%;
}

.service-offset-4 {
    margin-left: 30%;
    margin-right: 10%;
    flex-direction: row-reverse;
}

.service-offset-5 {
    margin-left: 15%;
    margin-right: 15%;
}

.service-visual {
    flex-shrink: 0;
    width: 280px;
    background-color: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 220px;
    display: block;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #1a4d7a;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a4d7a;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #1a4d7a;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-select-service:hover {
    background-color: #143d61;
    transform: translateY(-2px);
}

.form-section-overlap {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 700px;
    margin: 6rem 4rem;
}

.form-container {
    flex: 1;
    background-color: #1a4d7a;
    color: #ffffff;
    padding: 4rem 3.5rem;
    border-radius: 20px;
    z-index: 10;
    margin-right: -8rem;
    max-width: 600px;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: #1a4d7a;
    color: #ffffff;
}

.btn-submit {
    background-color: #ffffff;
    color: #1a4d7a;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.form-image-side {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    margin-left: 2rem;
}

.form-image-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-scattered {
    padding: 8rem 4rem;
    background-color: #f4f6f8;
}

.values-scattered h2 {
    font-size: 2.5rem;
    color: #1a4d7a;
    margin-bottom: 5rem;
    text-align: center;
}

.values-container {
    position: relative;
    min-height: 500px;
}

.value-block {
    position: absolute;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 350px;
}

.value-pos-1 {
    top: 0;
    left: 5%;
}

.value-pos-2 {
    top: 10rem;
    right: 8%;
}

.value-pos-3 {
    top: 22rem;
    left: 35%;
}

.value-block h3 {
    font-size: 1.5rem;
    color: #1a4d7a;
    margin-bottom: 1rem;
}

.value-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.page-header-offset {
    padding: 8rem 4rem 3rem;
    margin-left: 10%;
    max-width: 800px;
}

.page-header-offset h1 {
    font-size: 3rem;
    color: #1a4d7a;
    margin-bottom: 1rem;
}

.header-lead {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
}

.about-story-irregular {
    padding: 4rem 4rem 6rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.story-block {
    flex: 1;
    max-width: 550px;
}

.story-left {
    margin-left: 10%;
}

.story-block h2 {
    font-size: 2.3rem;
    color: #1a4d7a;
    margin-bottom: 1.5rem;
}

.story-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-image-overlap {
    flex: 1;
    margin-top: -3rem;
    margin-right: 5%;
}

.story-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.expertise-scattered {
    padding: 6rem 4rem;
    background-color: #f9f9f9;
}

.expertise-scattered h2 {
    font-size: 2.5rem;
    color: #1a4d7a;
    margin-bottom: 4rem;
    text-align: center;
}

.expertise-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.expertise-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.exp-offset-1 {
    margin-left: 5%;
    margin-right: 30%;
}

.exp-offset-2 {
    margin-left: 35%;
    margin-right: 10%;
}

.exp-offset-3 {
    margin-left: 15%;
    margin-right: 20%;
}

.expertise-card h3 {
    font-size: 1.6rem;
    color: #1a4d7a;
    margin-bottom: 1rem;
}

.expertise-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.approach-asymmetric {
    padding: 6rem 4rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.approach-content {
    flex: 1;
    margin-left: 8%;
}

.approach-content h2 {
    font-size: 2.5rem;
    color: #1a4d7a;
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    color: #1a4d7a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #1a4d7a;
    transition: opacity 0.3s;
}

.cta-inline:hover {
    opacity: 0.7;
}

.approach-visual {
    flex: 1;
    margin-right: 5%;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.services-detailed {
    padding: 4rem 4rem 6rem;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.service-layout-1 {
    margin-left: 5%;
    margin-right: 10%;
}

.service-layout-2 {
    margin-left: 10%;
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a4d7a;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a4d7a;
    font-size: 1.5rem;
}

.service-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a4d7a;
    margin-bottom: 1.5rem;
}

.cta-service {
    display: inline-block;
    background-color: #1a4d7a;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-service:hover {
    background-color: #143d61;
    transform: translateY(-2px);
}

.service-detail-visual {
    flex-shrink: 0;
    width: 450px;
    background-color: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-section-offset {
    padding: 5rem 4rem;
    text-align: center;
    background-color: #f4f6f8;
    margin: 4rem 4rem;
    border-radius: 20px;
}

.cta-section-offset h2 {
    font-size: 2.5rem;
    color: #1a4d7a;
    margin-bottom: 1rem;
}

.cta-section-offset p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-info-asymmetric {
    padding: 4rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-block {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.contact-offset-1 {
    margin-left: 8%;
    margin-right: 40%;
}

.contact-offset-2 {
    margin-left: 35%;
    margin-right: 10%;
}

.contact-offset-3 {
    margin-left: 15%;
    margin-right: 30%;
}

.contact-block h2 {
    font-size: 1.8rem;
    color: #1a4d7a;
    margin-bottom: 1.5rem;
}

.contact-address,
.contact-email-display,
.contact-hours {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-visual-section {
    position: relative;
    margin: 4rem 4rem 6rem;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-image-wrapper {
    width: 100%;
    height: 100%;
}

.contact-image-wrapper img {
    width: 100%;
    height: 500px;
    display: block;
}

.contact-overlay-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 16px;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-overlay-text h3 {
    font-size: 2rem;
    color: #1a4d7a;
    margin-bottom: 1rem;
}

.contact-overlay-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 8rem 4rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.thanks-content {
    flex: 1;
    margin-left: 10%;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #1a4d7a;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-service-confirm {
    font-size: 1.1rem;
    color: #1a4d7a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.thanks-next-steps {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.thanks-visual {
    flex: 1;
    max-width: 500px;
    margin-right: 8%;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.legal-page {
    padding: 6rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: #1a4d7a;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #1a4d7a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #1a4d7a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #1a4d7a;
    text-decoration: underline;
}

.legal-updated {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.footer-asymmetric {
    background-color: #1a2d3f;
    color: #ffffff;
    padding: 4rem 4rem 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col-brand {
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 45, 63, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-cookie-accept {
    background-color: #ffffff;
    color: #1a4d7a;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    transform: translateY(-2px);
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .nav-floating {
        right: 2rem;
        padding: 0.8rem 1.2rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 5rem 2rem 3rem;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        max-width: 100%;
        transform: none;
        margin-top: 2rem;
    }

    .intro-offset {
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 3rem;
    }

    .intro-narrow {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .intro-card-float {
        margin-right: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .services-irregular {
        padding: 4rem 2rem;
    }

    .section-title-left {
        margin-left: 0;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .service-visual {
        width: 100%;
    }

    .form-section-overlap {
        flex-direction: column;
        margin: 4rem 2rem;
    }

    .form-container {
        margin-right: 0;
        max-width: 100%;
    }

    .form-image-side {
        margin-left: 0;
        margin-top: 2rem;
        min-height: 300px;
    }

    .values-container {
        position: relative;
        min-height: auto;
    }

    .value-block {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .page-header-offset {
        margin-left: 0;
        padding: 5rem 2rem 2rem;
    }

    .about-story-irregular {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .story-left {
        margin-left: 0;
    }

    .story-image-overlap {
        margin-top: 2rem;
        margin-right: 0;
    }

    .exp-offset-1,
    .exp-offset-2,
    .exp-offset-3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .approach-asymmetric {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .approach-content {
        margin-left: 0;
    }

    .approach-visual {
        margin-right: 0;
    }

    .service-detail {
        flex-direction: column;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .service-detail-visual {
        width: 100%;
    }

    .contact-offset-1,
    .contact-offset-2,
    .contact-offset-3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .contact-overlay-text {
        position: relative;
        top: auto;
        left: 0;
        transform: none;
        margin-top: 2rem;
        max-width: 100%;
    }

    .thanks-section {
        flex-direction: column;
        padding: 5rem 2rem;
    }

    .thanks-content {
        margin-left: 0;
    }

    .thanks-visual {
        margin-right: 0;
        max-width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 2.5rem;
        right: 1rem;
        left: 1rem;
        padding: 0.8rem 1rem;
    }

    .nav-brand {
        font-size: 1rem;
        margin-right: 1rem;
    }

    .nav-menu {
        gap: 0.8rem;
    }

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

    .hero-title {
        font-size: 2rem;
    }

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

    .page-header-offset h1 {
        font-size: 2.2rem;
    }

    .legal-page {
        padding: 5rem 2rem;
    }
}