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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-main {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-main a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 12px;
    color: #666;
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 4px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: #f9f9f9;
}

.hero-content-left {
    flex: 1;
    padding: 60px 80px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

.hero-image-right {
    flex: 1;
    background-color: #e0e0e0;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #0066cc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.intro-section {
    padding: 80px 20px;
    text-align: center;
}

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

.intro-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.benefits-split {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.benefits-split.reverse {
    flex-direction: row-reverse;
}

.benefit-image-left,
.benefit-image-right {
    flex: 1;
    background-color: #e0e0e0;
}

.benefit-image-left img,
.benefit-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefit-content-right,
.benefit-content-left {
    flex: 1;
    padding: 60px 80px;
}

.benefit-content-right h3,
.benefit-content-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefit-content-right p,
.benefit-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.price-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-top: 24px;
}

.btn-select-service {
    margin-top: 20px;
    padding: 14px 28px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #0052a3;
}

.form-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-section > p {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-section {
    padding: 80px 20px;
}

.testimonial-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 32px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

.footer-main {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    margin-bottom: 16px;
    line-height: 1.6;
}

.page-hero {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #555;
}

.about-split {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-content-left,
.about-content-right {
    flex: 1;
    padding: 60px 80px;
}

.about-image-left,
.about-image-right {
    flex: 1;
    background-color: #e0e0e0;
}

.about-image-left img,
.about-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content-left h2,
.about-content-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-content-left p,
.about-content-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.values-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

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

.cta-section {
    padding: 80px 20px;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.services-grid {
    padding: 40px 0;
}

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

.service-card-full.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.service-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.service-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin: 24px 0;
}

.contact-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.contact-info-left {
    flex: 1;
    padding: 60px 80px;
    background-color: #f9f9f9;
}

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

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

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

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-map-right {
    flex: 1;
    background-color: #e0e0e0;
}

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

.contact-info-section {
    padding: 80px 20px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 120px 20px;
    text-align: center;
}

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 24px;
    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;
    gap: 32px;
}

.cookie-content p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content p a {
    color: #66b3ff;
    text-decoration: underline;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-main {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
        display: none;
    }

    .nav-main.active {
        display: flex;
    }

    .nav-main a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-split,
    .benefits-split,
    .about-split,
    .service-card-full,
    .contact-split {
        flex-direction: column;
    }

    .benefits-split.reverse,
    .about-split.reverse,
    .service-card-full.reverse {
        flex-direction: column;
    }

    .hero-content-left,
    .benefit-content-right,
    .benefit-content-left,
    .about-content-left,
    .about-content-right,
    .contact-info-left {
        padding: 40px 20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

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