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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.floating-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #e9ecef;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a52;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 15px;
    color: #495057;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a3a52;
}

.asymmetric-hero {
    display: flex;
    flex-direction: column;
    padding: 80px 40px 40px;
    position: relative;
    min-height: 600px;
}

.hero-offset-text {
    max-width: 600px;
    margin-left: 60px;
    margin-top: 40px;
    z-index: 2;
    position: relative;
}

.hero-offset-text h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-offset-text p {
    font-size: 20px;
    color: #495057;
    line-height: 1.7;
}

.hero-overlap-image {
    position: absolute;
    right: 40px;
    top: 120px;
    width: 55%;
    max-width: 700px;
    z-index: 1;
    background-color: #e9ecef;
}

.hero-overlap-image img {
    width: 100%;
    height: 500px;
}

.offset-intro {
    display: flex;
    padding: 100px 40px 80px;
    gap: 60px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1;
    max-width: 700px;
    padding-left: 120px;
}

.intro-narrow h2 {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
}

.intro-sidebar {
    flex: 0 0 300px;
    padding-top: 40px;
}

.stat-block {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #f8f9fa;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
}

.irregular-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 40px;
    gap: 30px;
    align-items: flex-start;
}

.grid-item-large {
    flex: 1 1 55%;
    min-width: 400px;
    position: relative;
    background-color: #f8f9fa;
}

.grid-item-large img {
    width: 100%;
    height: 450px;
}

.overlay-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    max-width: 450px;
}

.overlay-content h3 {
    font-size: 26px;
    color: #1a3a52;
    margin-bottom: 12px;
    font-weight: 700;
}

.overlay-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.grid-item-small {
    flex: 1 1 25%;
    min-width: 280px;
    align-self: stretch;
    background-color: #1a3a52;
}

.card-content {
    padding: 40px 30px;
    height: 100%;
    color: #ffffff;
}

.card-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.card-content ul {
    list-style: none;
}

.card-content li {
    font-size: 16px;
    margin-bottom: 14px;
    padding-left: 20px;
    position: relative;
}

.card-content li:before {
    content: "→";
    position: absolute;
    left: 0;
}

.grid-item-medium {
    flex: 1 1 40%;
    min-width: 350px;
    background-color: #e9ecef;
}

.grid-item-medium img {
    width: 100%;
    height: 350px;
}

.services-preview-asymmetric {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.services-header-offset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-left: 80px;
}

.services-header-offset h2 {
    font-size: 42px;
    color: #1a3a52;
    font-weight: 700;
}

.text-link {
    font-size: 16px;
    color: #1a3a52;
    border-bottom: 2px solid #1a3a52;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.text-link:hover {
    opacity: 0.7;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 120px;
}

.service-card-offset {
    background-color: #ffffff;
    padding: 40px;
    max-width: 650px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card-offset:nth-child(2) {
    margin-left: 100px;
}

.service-card-offset:nth-child(3) {
    margin-left: 50px;
}

.service-card-offset h3 {
    font-size: 28px;
    color: #1a3a52;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-card-offset p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #1a3a52;
    padding: 10px 20px;
    background-color: #e9ecef;
}

.form-section-irregular {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    align-items: flex-start;
}

.form-intro-text {
    flex: 0 0 400px;
    padding-top: 60px;
}

.form-intro-text h2 {
    font-size: 40px;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro-text p {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
}

.contact-form-offset {
    flex: 1;
    max-width: 600px;
    background-color: #f8f9fa;
    padding: 50px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ced4da;
    background-color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a3a52;
}

.submit-btn {
    background-color: #1a3a52;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0f2a3f;
}

.footer-asymmetric {
    background-color: #1a3a52;
    color: #ffffff;
    padding: 80px 40px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-col-offset {
    flex: 1 1 220px;
}

.footer-col-offset h4 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-col-offset p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
}

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

.footer-col-offset li {
    margin-bottom: 10px;
}

.footer-col-offset a {
    font-size: 15px;
    color: #cbd5e0;
    transition: color 0.3s;
}

.footer-col-offset a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    flex-basis: 100%;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 82, 0.98);
    padding: 30px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1 1 400px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.85;
}

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

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

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

.page-hero-offset {
    padding: 80px 40px 60px;
    position: relative;
}

.page-hero-offset h1 {
    font-size: 56px;
    color: #1a3a52;
    margin-bottom: 40px;
    padding-left: 80px;
    font-weight: 700;
}

.page-hero-offset img {
    width: 100%;
    max-width: 1100px;
    height: 450px;
    margin-left: 120px;
    background-color: #e9ecef;
}

.about-narrative {
    display: flex;
    padding: 80px 40px;
    gap: 80px;
    align-items: center;
}

.narrative-block-left {
    flex: 1;
    padding-left: 60px;
}

.narrative-block-left h2 {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 24px;
    font-weight: 700;
}

.narrative-block-left p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.narrative-image-right {
    flex: 0 0 450px;
    background-color: #e9ecef;
}

.narrative-image-right img {
    width: 100%;
    height: 400px;
}

.philosophy-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.philosophy-header {
    margin-bottom: 50px;
    padding-left: 100px;
}

.philosophy-header h2 {
    font-size: 42px;
    color: #1a3a52;
    font-weight: 700;
}

.philosophy-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-left: 60px;
}

.philosophy-card {
    flex: 1 1 320px;
    padding: 40px;
    background-color: #ffffff;
}

.philosophy-card:nth-child(2) {
    margin-top: 50px;
}

.philosophy-card h3 {
    font-size: 26px;
    color: #1a3a52;
    margin-bottom: 16px;
    font-weight: 700;
}

.philosophy-card p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

.team-offset-section {
    display: flex;
    padding: 80px 40px;
    gap: 70px;
    align-items: flex-start;
}

.team-intro {
    flex: 1;
    padding-right: 40px;
}

.team-intro h2 {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 24px;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
}

.team-image-overlap {
    flex: 0 0 500px;
    margin-top: -40px;
    background-color: #e9ecef;
}

.team-image-overlap img {
    width: 100%;
    height: 450px;
}

.values-irregular {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.values-irregular h2 {
    font-size: 42px;
    color: #1a3a52;
    margin-bottom: 40px;
    font-weight: 700;
}

.values-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 30px;
    background-color: #f8f9fa;
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
}

.value-item:nth-child(2) {
    margin-left: 80px;
}

.value-item:nth-child(3) {
    margin-left: 40px;
}

.value-item strong {
    color: #1a3a52;
    font-weight: 700;
}

.services-hero {
    padding: 80px 40px 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 52px;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero p {
    font-size: 20px;
    color: #495057;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 40px;
}

.service-block-irregular {
    display: flex;
    gap: 60px;
    padding: 60px 0;
    align-items: center;
}

.service-block-irregular.reverse {
    flex-direction: row-reverse;
}

.service-text-col {
    flex: 1;
}

.service-text-col h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-text-col p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a3a52;
    font-weight: 700;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a52;
}

.service-image-col {
    flex: 0 0 450px;
    background-color: #e9ecef;
}

.service-image-col img {
    width: 100%;
    height: 400px;
}

.cta-section-offset {
    padding: 100px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-section-offset h2 {
    font-size: 42px;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section-offset p {
    font-size: 19px;
    color: #495057;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #1a3a52;
    color: #ffffff;
    padding: 18px 45px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0f2a3f;
}

.contact-hero {
    padding: 80px 40px 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 52px;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 20px;
    color: #495057;
    line-height: 1.7;
}

.contact-info-irregular {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 40px;
    gap: 60px;
}

.contact-block {
    flex: 1 1 300px;
    padding: 40px;
    background-color: #f8f9fa;
}

.contact-block:nth-child(2) {
    margin-top: 40px;
}

.contact-block h2 {
    font-size: 26px;
    color: #1a3a52;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-block p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
}

.contact-block .note {
    font-size: 15px;
    color: #6c757d;
    margin-top: 12px;
}

.contact-image-section {
    padding: 60px 40px;
}

.contact-image-section img {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    background-color: #e9ecef;
}

.contact-cta {
    padding: 80px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 40px;
    color: #1a3a52;
    margin-bottom: 18px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-container {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    align-items: center;
    min-height: 500px;
}

.thanks-content {
    flex: 1;
    padding-left: 60px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a3a52;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 19px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-actions {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.thanks-image {
    flex: 0 0 450px;
    background-color: #e9ecef;
}

.thanks-image img {
    width: 100%;
    height: 400px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 48px;
    color: #1a3a52;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 32px;
    color: #1a3a52;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 24px;
    color: #1a3a52;
    margin-top: 30px;
    margin-bottom: 14px;
    font-weight: 700;
}

.legal-page h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-page a:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .asymmetric-hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-offset-text {
        margin-left: 20px;
        margin-top: 20px;
    }

    .hero-offset-text h1 {
        font-size: 42px;
    }

    .hero-overlap-image {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    .offset-intro {
        flex-direction: column;
    }

    .intro-narrow {
        padding-left: 20px;
    }

    .irregular-grid {
        flex-direction: column;
    }

    .grid-item-large,
    .grid-item-small,
    .grid-item-medium {
        min-width: 100%;
    }

    .services-header-offset {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .services-stack {
        padding-left: 20px;
    }

    .service-card-offset:nth-child(2),
    .service-card-offset:nth-child(3) {
        margin-left: 0;
    }

    .form-section-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .form-intro-text {
        padding-top: 0;
    }

    .contact-form-offset {
        padding: 40px 30px;
    }

    .about-narrative {
        flex-direction: column;
    }

    .narrative-block-left {
        padding-left: 20px;
    }

    .narrative-image-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .philosophy-header {
        padding-left: 20px;
    }

    .philosophy-grid-irregular {
        padding-left: 20px;
    }

    .philosophy-card:nth-child(2) {
        margin-top: 0;
    }

    .team-offset-section {
        flex-direction: column;
    }

    .team-image-overlap {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 0;
    }

    .value-item:nth-child(2),
    .value-item:nth-child(3) {
        margin-left: 0;
    }

    .service-block-irregular,
    .service-block-irregular.reverse {
        flex-direction: column;
    }

    .service-image-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .thanks-container {
        flex-direction: column;
    }

    .thanks-content {
        padding-left: 20px;
    }

    .thanks-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero-offset h1 {
        padding-left: 20px;
        font-size: 42px;
    }

    .page-hero-offset img {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .hero-offset-text h1 {
        font-size: 36px;
    }

    .hero-offset-text p {
        font-size: 18px;
    }

    .intro-narrow h2,
    .services-header-offset h2,
    .philosophy-header h2,
    .cta-section-offset h2 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        flex-wrap: wrap;
    }

    .footer-asymmetric {
        flex-direction: column;
        gap: 40px;
    }
}
