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

:root {
    --primary: #2c5f8d;
    --secondary: #4a7ba7;
    --accent: #e8927c;
    --dark: #1a1a2e;
    --light: #f4f4f9;
    --gray: #6b7280;
    --border: #e5e7eb;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #ffffff;
}

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

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

.ad-disclosure {
    background: #fffbea;
    border-bottom: 1px solid #fcd34d;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #92400e;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.96);
    color: white;
    padding: 20px;
    display: none;
    z-index: 9999;
    border-top: 3px solid var(--accent);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: var(--accent);
    color: white;
}

.btn-cookie:hover {
    background: #d67d66;
}

.btn-cookie-alt {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 1px solid var(--border);
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.header-right {
    display: flex;
    gap: 35px;
}

.header-right a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.header-right a:hover {
    color: var(--primary);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    background: var(--light);
}

.hero-left-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.5;
}

.hero-right-visual {
    flex: 1;
    background: #d1d5db;
    overflow: hidden;
}

.hero-right-visual img {
    width: 100%;
    height: 100%;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.intro-narrow {
    padding: 100px 60px;
    background: white;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--dark);
    text-align: center;
}

.value-split-reverse {
    display: flex;
    align-items: center;
}

.value-image-left {
    flex: 1;
    background: #e5e7eb;
}

.value-image-left img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.value-text-right {
    flex: 1;
    padding: 80px 100px;
}

.value-text-right h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--dark);
}

.value-text-right p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.services-cards-asymmetric {
    padding: 120px 60px;
    background: var(--light);
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 60px;
    padding-left: 20px;
}

.section-header-offset h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-header-offset p {
    font-size: 18px;
    color: var(--gray);
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    background: #d1d5db;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0 24px 16px;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 24px;
}

.btn-card {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-card:hover {
    background: var(--secondary);
}

.btn-card.selected {
    background: var(--accent);
}

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

.form-left-context {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-context h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--dark);
}

.form-left-context p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 16px;
    color: var(--dark);
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.form-right-box {
    flex: 1;
    background: var(--light);
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--secondary);
}

.btn-submit:disabled {
    background: var(--gray);
    cursor: not-allowed;
}

.testimonial-inline {
    padding: 80px 60px;
    background: var(--primary);
    color: white;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

.final-context {
    padding: 100px 60px;
    background: white;
}

.context-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.context-narrow h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--dark);
}

.context-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.link-inline {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
    transition: color 0.3s;
}

.link-inline:hover {
    color: var(--secondary);
}

.footer {
    background: var(--dark);
    color: white;
    padding: 60px 60px 30px;
}

.footer-columns {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
}

.page-header {
    background: var(--light);
    padding: 100px 60px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--dark);
}

.page-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 60px;
    background: white;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-container h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--dark);
}

.content-container h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: var(--dark);
}

.content-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
}

.content-container ul,
.content-container ol {
    margin: 20px 0 20px 24px;
    line-height: 1.8;
    color: var(--gray);
}

.content-container li {
    margin-bottom: 10px;
}

.content-container a {
    color: var(--primary);
    text-decoration: underline;
}

.content-container a:hover {
    color: var(--secondary);
}

.services-list-section {
    padding: 80px 60px;
    background: var(--light);
}

.services-list-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.service-detail h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-detail .service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

.contact-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark);
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: var(--light);
    min-height: 400px;
    border-radius: 8px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary);
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
}

.thanks-content .service-info {
    background: var(--light);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 16px;
    color: var(--dark);
}

@media (max-width: 968px) {
    .header-split {
        padding: 20px 30px;
    }

    .hero-split,
    .value-split-reverse,
    .form-section-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left-content {
        padding: 60px 30px;
    }

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

    .value-text-right {
        padding: 60px 30px;
    }

    .services-cards-asymmetric,
    .intro-narrow,
    .final-context {
        padding: 60px 30px;
    }

    .cards-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

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