* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2980b9;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.nav-asymmetric {
    background: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

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

.hero-offset-text {
    max-width: 600px;
    z-index: 2;
    padding-left: 5%;
    padding-right: 2rem;
}

.hero-offset-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.hero-image-wrap {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 55%;
    height: 80%;
    transform: rotate(-3deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    border-radius: 12px;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-offset {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.intro-narrow {
    flex: 2;
    padding-left: 8%;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-aside {
    flex: 1;
    position: sticky;
    top: 120px;
}

.fact-card {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.fact-card h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.fact-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #2980b9;
}

.approach-stacked {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.approach-text-block {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.approach-text-block h2 {
    font-size: 2.75rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.pillar-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.pillar {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.pillar h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pillar p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-visual {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.services-asymmetric {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-header-offset {
    max-width: 800px;
    margin-left: 10%;
    margin-bottom: 4rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-header-offset p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-featured {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
}

.service-featured .service-image {
    flex: 1;
}

.service-featured .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.price {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3498db;
}

.booking-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.booking-form-container h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.trust-section {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-content > p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.trust-content .citation {
    color: #3498db;
}

.trust-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-block {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.trust-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff3cd;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    color: #856404;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

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

.footer-main {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-references h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-references ol {
    list-style-position: inside;
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-references a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-references a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #7f8c8d;
}

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

    .hero-image-wrap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 2rem;
    }

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

    .intro-aside {
        position: static;
    }

    .service-featured {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-offset-text h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        flex-basis: 100%;
        justify-content: center;
    }

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