* {
    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;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 48%;
    padding: 80px 8% 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

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

.hero-image-diagonal {
    width: 52%;
    position: relative;
    background-color: #e2e8f0;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.intro-offset {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    align-items: center;
}

.intro-text-block {
    flex: 1;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.intro-visual-card {
    flex: 1;
    position: relative;
    background-color: #f0f4f8;
}

.intro-visual-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-caption {
    padding: 20px;
    background-color: #ffffff;
    font-size: 15px;
    color: #4a5568;
    border-left: 4px solid #1a73e8;
}

.services-asymmetric {
    padding: 90px 8% 100px;
    background-color: #fafbfc;
}

.section-title-rotated {
    margin-bottom: 60px;
}

.section-title-rotated h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-title-rotated p {
    font-size: 17px;
    color: #6c757d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 25px 12px;
    color: #1a1a1a;
}

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

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #1a73e8;
    margin: 0 25px 20px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 12px 24px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1557b0;
}

.offset-top {
    margin-top: 40px;
}

.offset-bottom {
    margin-top: -20px;
}

.offset-right {
    margin-left: 40px;
}

.offset-left {
    margin-right: 40px;
}

.offset-center {
    margin: 0 auto;
}

.trust-block-diagonal {
    display: flex;
    padding: 90px 8%;
    gap: 70px;
    align-items: center;
    background-color: #f0f4f8;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a73e8;
}

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

.trust-visual {
    flex: 1;
    background-color: #e2e8f0;
}

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

.form-section-irregular {
    padding: 100px 8%;
    background-color: #ffffff;
}

.form-intro-offset {
    max-width: 700px;
    margin-bottom: 50px;
}

.form-intro-offset h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.form-intro-offset p {
    font-size: 17px;
    color: #6c757d;
}

.form-asymmetric {
    max-width: 650px;
    background-color: #f8f9fa;
    padding: 45px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

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

.cta-submit:hover {
    background-color: #1557b0;
}

.testimonials-scattered {
    padding: 90px 8%;
    background-color: #fafbfc;
}

.testimonials-scattered h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

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

.testimonial-author {
    font-size: 14px;
    color: #1a73e8;
    font-weight: 600;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #e2e8f0;
    padding: 60px 8% 30px;
}

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

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

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-block p,
.footer-block a {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

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

.footer-disclaimer p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 8%;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

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

.about-text-primary {
    flex: 1;
}

.about-text-primary h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.about-image-diagonal {
    flex: 1;
    background-color: #e2e8f0;
}

.about-image-diagonal img {
    width: 100%;
    height: auto;
    display: block;
}

.story-irregular {
    padding: 90px 8%;
    display: flex;
    gap: 60px;
}

.story-block {
    flex: 1;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.values-asymmetric {
    padding: 90px 8%;
    background-color: #fafbfc;
}

.values-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a73e8;
}

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

.team-scattered {
    padding: 90px 8%;
}

.team-scattered h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-description {
    margin-bottom: 40px;
}

.team-description p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.team-image-offset {
    max-width: 900px;
    margin: 0 auto;
    background-color: #e2e8f0;
}

.team-image-offset img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-diagonal {
    padding: 90px 8%;
    background-color: #f0f4f8;
}

.approach-diagonal h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a73e8;
}

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

.coverage-area {
    padding: 90px 8%;
}

.coverage-area h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.coverage-area p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.zone-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.zone-list li {
    background-color: #f0f4f8;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 15px;
    color: #2c3e50;
}

.services-hero {
    padding: 80px 8% 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

.services-detail-asymmetric {
    padding: 60px 8% 90px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: flex-start;
}

.service-image-wrap {
    flex: 1;
    background-color: #e2e8f0;
}

.service-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-info p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-info h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info ul {
    list-style: none;
    padding-left: 0;
}

.service-info ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
}

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

.additional-info-offset {
    padding: 90px 8%;
    background-color: #fafbfc;
}

.additional-info-offset h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.info-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a73e8;
}

.info-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-hero-offset {
    padding: 80px 8% 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero-offset h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.contact-content-asymmetric {
    display: flex;
    padding: 90px 8%;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a73e8;
}

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

.contact-item .note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e2e8f0;
    min-height: 400px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background-color: rgba(26, 115, 232, 0.9);
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.map-overlay p {
    font-size: 20px;
    font-weight: 600;
}

.faq-section-diagonal {
    padding: 90px 8%;
    background-color: #fafbfc;
}

.faq-section-diagonal h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a73e8;
}

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

.thanks-container {
    display: flex;
    padding: 90px 8%;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-detail {
    margin: 35px 0;
    padding: 25px;
    background-color: #f0f4f8;
    border-radius: 8px;
}

.thanks-next-steps {
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    padding-left: 20px;
}

.thanks-next-steps li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #5a6268;
}

.thanks-image {
    flex: 1;
    background-color: #e2e8f0;
}

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
}

.legal-content {
    padding: 80px 8% 90px;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #cbd5e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #4a5568;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-diagonal {
        width: 100%;
    }

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

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

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

    .trust-block-diagonal {
        flex-direction: column;
    }

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

    .contact-content-asymmetric {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

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

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