* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    letter-spacing: -0.5px;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 60px 40px;
    background-color: #f8f9fa;
    position: relative;
}

.hero-content-offset {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 36px;
    color: #4a5568;
    max-width: 520px;
}

.hero-image-block {
    flex: 0 0 55%;
    position: relative;
    margin-left: -80px;
    background-color: #e3e8f0;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #1a73e8;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #1a73e8;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.cta-secondary:hover {
    background-color: #1a73e8;
    color: white;
}

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

.intro-narrow {
    flex: 0 0 40%;
}

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

.intro-narrow p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.intro-wide-image {
    flex: 0 0 50%;
    margin-top: -60px;
    background-color: #f0f4f8;
}

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

.problem-amplification {
    display: flex;
    padding: 80px 40px;
    gap: 80px;
    background-color: #fff8f0;
    align-items: flex-start;
}

.problem-text-left {
    flex: 0 0 55%;
    padding-left: 60px;
}

.problem-text-left h3 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.problem-text-left ul {
    list-style: none;
}

.problem-text-left li {
    padding: 16px 0;
    border-bottom: 1px solid #f0ddc8;
    font-size: 18px;
    color: #4a5568;
}

.problem-card-right {
    flex: 0 0 35%;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.insight-quote {
    font-size: 22px;
    font-style: italic;
    color: #1a73e8;
    line-height: 1.5;
    font-weight: 500;
}

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

.section-heading-offset {
    font-size: 44px;
    margin-bottom: 60px;
    margin-left: 80px;
    color: #1a1a1a;
    font-weight: 800;
}

.service-card {
    display: flex;
    margin-bottom: 80px;
    gap: 40px;
    align-items: stretch;
}

.card-overlap-left {
    padding-left: 80px;
}

.card-overlap-right {
    padding-right: 80px;
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 48%;
    background-color: #e3e8f0;
    overflow: hidden;
}

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

.service-content {
    flex: 0 0 48%;
    background-color: white;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
    margin: 24px 0;
}

.select-service {
    padding: 14px 28px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #1a1a1a;
    display: flex;
    gap: 60px;
}

.testimonial-block {
    flex: 1;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #1a73e8;
}

.testimonial-block p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: #a0aec0;
    font-size: 16px;
    font-weight: 500;
}

.form-section-asymmetric {
    padding: 100px 40px 100px 160px;
    background-color: #f0f4f8;
}

.form-container {
    max-width: 600px;
}

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

.form-container > p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

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

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: white;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.service-display {
    padding: 20px;
    background-color: #e6f2ff;
    border-radius: 6px;
    border: 2px solid #1a73e8;
}

.service-display p {
    margin: 8px 0;
    font-size: 16px;
    color: #2c3e50;
}

.service-display span {
    font-weight: 600;
    color: #1a73e8;
}

.cta-submit {
    padding: 16px 36px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.trust-block {
    padding: 80px 40px;
    background-color: white;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 40px 30px 40px;
}

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    padding-left: 40px;
}

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #1a73e8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #718096;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 13px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    flex: 1;
    font-size: 15px;
    color: #e2e8f0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #1a73e8;
    color: white;
}

.cookie-accept:hover {
    background-color: #1557b0;
}

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.about-hero {
    display: flex;
    padding: 100px 40px 80px 80px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.about-text-block {
    flex: 0 0 45%;
}

.about-text-block h1 {
    font-size: 48px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 800;
}

.about-text-block p {
    font-size: 19px;
    color: #4a5568;
    line-height: 1.7;
}

.about-image-offset {
    flex: 0 0 50%;
    margin-top: 60px;
    background-color: #e3e8f0;
}

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

.about-story {
    padding: 100px 160px;
    background-color: white;
}

.story-narrow {
    max-width: 700px;
}

.story-narrow h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-narrow p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-asymmetric {
    padding: 80px 40px;
    background-color: #f0f4f8;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 0 0 calc(33.33% - 30px);
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-offset {
    margin-top: 60px;
}

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

.value-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.team-section {
    padding: 100px 40px;
    background-color: white;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-members {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 0 0 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e3e8f0;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    color: #718096;
}

.services-hero {
    padding: 120px 40px 60px 80px;
    background-color: #f8f9fa;
}

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

.services-hero p {
    font-size: 20px;
    color: #4a5568;
}

.services-list {
    padding: 60px 40px;
    background-color: white;
}

.service-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-left {
    padding-left: 40px;
}

.service-right {
    padding-right: 40px;
    flex-direction: row-reverse;
}

.service-details {
    flex: 0 0 50%;
}

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

.service-details p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-details ul {
    list-style: none;
    margin: 24px 0;
}

.service-details li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

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

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    color: #1a73e8;
    margin: 28px 0;
}

.service-visual {
    flex: 0 0 45%;
    background-color: #e3e8f0;
}

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

.services-cta {
    padding: 80px 40px;
    background-color: #f0f4f8;
    text-align: center;
}

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

.services-cta p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 36px;
}

.contact-hero {
    padding: 120px 40px 60px 80px;
    background-color: #f8f9fa;
}

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

.contact-hero p {
    font-size: 20px;
    color: #4a5568;
}

.contact-content {
    display: flex;
    padding: 80px 40px;
    gap: 60px;
    background-color: white;
}

.contact-info-block {
    flex: 0 0 45%;
    padding-left: 40px;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a73e8;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 0 0 50%;
    background-color: #e3e8f0;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    padding: 80px 160px;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-additional p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-hero {
    display: flex;
    padding: 100px 40px 80px 80px;
    gap: 60px;
    align-items: center;
    background-color: #f0f9ff;
    min-height: 70vh;
}

.thanks-content {
    flex: 0 0 50%;
}

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

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

.service-confirmation {
    background-color: #e6f2ff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid #1a73e8;
}

.service-confirmation p {
    font-size: 17px;
    margin-bottom: 8px;
}

.service-confirmation strong {
    color: #1a73e8;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.thanks-image {
    flex: 0 0 45%;
    background-color: #e3e8f0;
}

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

.next-steps {
    padding: 80px 160px;
    background-color: white;
}

.next-steps h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-list {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a73e8;
    font-weight: 600;
}

.step-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.legal-content {
    padding: 80px 160px;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a73e8;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-asymmetric,
    .about-hero,
    .thanks-hero,
    .offset-intro,
    .problem-amplification,
    .contact-content {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-block,
    .about-text-block,
    .about-image-offset,
    .thanks-content,
    .thanks-image,
    .intro-narrow,
    .intro-wide-image,
    .problem-text-left,
    .problem-card-right,
    .contact-info-block,
    .contact-map-placeholder {
        flex: 1 1 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .service-card,
    .service-item {
        flex-direction: column;
        padding: 0;
    }

    .card-overlap-left,
    .card-overlap-right,
    .service-left,
    .service-right {
        padding: 0;
    }

    .service-image,
    .service-content,
    .service-details,
    .service-visual {
        flex: 1 1 100%;
    }

    .footer-content,
    .testimonials-inline,
    .team-members,
    .steps-list,
    .values-asymmetric {
        flex-direction: column;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .legal-content,
    .about-story,
    .next-steps,
    .contact-additional {
        padding: 60px 40px;
    }

    .form-section-asymmetric {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .hero-content-offset p {
        font-size: 17px;
    }

    .section-heading-offset {
        font-size: 32px;
        margin-left: 0;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }
}