* {
    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: #1a1a1a;
    background: #fafafa;
}

.ad-disclosure {
    background: #2d3436;
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-weight: 700;
    font-size: 16px;
    color: #0066cc;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 100px 60px 60px 60px;
    align-items: center;
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 500px;
    padding-right: 80px;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

.cta-primary {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: -100px;
    margin-top: -40px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.intro-stagger {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: flex-start;
    background: #fff;
}

.intro-block-wide {
    flex: 1.5;
}

.intro-block-wide h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-block-wide p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.intro-block-narrow {
    flex: 1;
    margin-top: 60px;
}

.intro-block-narrow img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.approach-diagonal {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background: #f5f5f5;
    position: relative;
}

.approach-text {
    flex: 1.3;
    padding-top: 40px;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #444;
}

.approach-services-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: -60px;
}

.approach-services-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-preview {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.service-preview h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-preview .price {
    font-size: 18px;
    color: #0066cc;
    font-weight: 700;
}

.link-inline {
    display: inline-block;
    margin-top: 15px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #0052a3;
}

.testimonial-overlay {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 60px;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e0e0e0;
    filter: brightness(0.4);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.testimonial-content blockquote {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.benefits-asymmetric {
    padding: 100px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.benefit-card {
    width: calc(33.333% - 30px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.benefit-card.left-offset {
    margin-top: 0;
}

.benefit-card.right-offset {
    margin-top: 60px;
}

.benefit-card.center-offset {
    margin-top: 30px;
}

.benefit-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.benefit-card h3 {
    font-size: 20px;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-card p {
    font-size: 15px;
    margin: 0 25px 25px 25px;
    color: #555;
    line-height: 1.6;
}

.form-section-split {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    background: #f5f5f5;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-container label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-container input,
.form-container select {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border 0.3s;
}

.form-container input:focus,
.form-container select:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    background: #0066cc;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 60px 30px 60px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #0066cc;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 25px;
    margin-top: 25px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px 60px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #444;
}

.cookie-content a {
    color: #0066cc;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #0066cc;
    color: #fff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

.btn-reject:hover {
    background: #ccc;
}

@media (max-width: 1024px) {
    .floating-nav {
        right: 20px;
        top: 40px;
        padding: 15px 20px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 80px 40px 40px 40px;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-right {
        margin-left: 0;
        margin-top: 0;
    }

    .intro-stagger,
    .approach-diagonal,
    .form-section-split {
        flex-direction: column;
        padding: 60px 40px;
    }

    .benefits-asymmetric {
        padding: 60px 40px;
    }

    .benefit-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .floating-nav {
        position: relative;
        top: 0;
        right: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
        gap: 15px;
    }

    .hero-content-left h1 {
        font-size: 32px;
    }

    .intro-block-wide h2,
    .approach-text h2,
    .form-intro h2 {
        font-size: 28px;
    }

    .cookie-banner {
        padding: 20px;
    }
}