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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-right a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #2563eb;
}

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

.hero-content {
    flex: 1;
    padding-right: 64px;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 32px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.section-split {
    display: flex;
    align-items: center;
    padding: 96px 48px;
}

.section-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8fafc;
}

.split-content {
    flex: 1;
    padding: 0 48px;
}

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

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

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

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

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

.services-grid {
    padding: 96px 48px;
    background-color: #ffffff;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 56px;
    text-align: center;
}

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

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 320px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-card .price {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    margin: 16px 20px;
}

.select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 24px;
    padding: 14px;
    background-color: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.select-service.selected {
    background-color: #16a34a;
    color: #ffffff;
    border-color: #16a34a;
}

.form-section {
    padding: 96px 48px;
    background-color: #f8fafc;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-container > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.7;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
}

#selected-service-display {
    padding: 16px;
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #166534;
    display: none;
}

#selected-service-display.visible {
    display: block;
}

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

.btn-submit:hover {
    background-color: #1d4ed8;
}

.footer {
    background-color: #1a1a1a;
    color: #e5e7eb;
    padding: 64px 48px 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 48px;
    gap: 48px;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e5e7eb;
    padding: 24px 32px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

.btn-reject {
    background-color: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.btn-reject:hover {
    background-color: #e2e8f0;
}

.cookie-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-header {
    background-color: #f8fafc;
    padding: 96px 48px 64px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 48px;
}

.page-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: #1a1a1a;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 32px;
}

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

.contact-info {
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
}

.thanks-container {
    max-width: 700px;
    margin: 96px auto;
    padding: 64px 48px;
    text-align: center;
    background-color: #f0fdf4;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 40px;
    font-weight: 700;
    color: #166534;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #15803d;
    margin-bottom: 32px;
}

.thanks-container a {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #1d4ed8;
}

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

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-split,
    .section-split,
    .section-split.reverse {
        flex-direction: column;
        padding: 48px 24px;
    }

    .hero-content,
    .split-content {
        padding: 0;
    }

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

    .hero-image img,
    .split-image img {
        height: 300px;
    }

    .services-grid {
        padding: 48px 24px;
    }

    .service-card {
        width: 100%;
    }

    .form-section {
        padding: 48px 24px;
    }

    .contact-form {
        padding: 24px;
    }

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

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

    .page-header {
        padding: 64px 24px 48px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-content {
        padding: 48px 24px;
    }
}