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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #8b0000;
    text-decoration: none;
}

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

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

.nav-right a:hover {
    color: #8b0000;
}

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

.hero-content {
    flex: 1;
    padding: 80px;
    background: #f8f9fa;
}

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

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

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #8b0000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #660000;
}

.intro-section {
    padding: 100px 80px;
    background: #ffffff;
}

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

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

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #495057;
}

.features-alternating {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-row {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    gap: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    padding: 40px;
}

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
}

.feature-image {
    flex: 1;
    background: #dfe6e9;
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.services-cards {
    padding: 100px 80px;
    background: #ffffff;
}

.services-cards h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #6c757d;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #6c757d;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #8b0000;
    margin: 20px 24px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #8b0000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #660000;
}

.service-card.selected {
    border-color: #8b0000;
    box-shadow: 0 0 0 2px #8b0000;
}

.testimonials-inline {
    padding: 100px 80px;
    background: #f8f9fa;
}

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

.testimonial {
    max-width: 900px;
    margin: 0 auto 48px;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #8b0000;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
}

.cta-section {
    padding: 100px 80px;
    background: #1a1a1a;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e9ecef;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #f8f9fa;
}

.form-section {
    padding: 100px 80px;
    background: #ffffff;
}

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

.form-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 48px;
    color: #6c757d;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

.btn-submit:hover {
    background: #660000;
}

.disclaimer-section {
    padding: 60px 80px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

.footer {
    background: #1a1a1a;
    color: #e9ecef;
    padding: 60px 80px 20px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #adb5bd;
    margin-bottom: 8px;
}

.footer-section a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #8b0000;
    color: #ffffff;
}

.btn-accept:hover {
    background: #660000;
}

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

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

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

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

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

.thanks-content .service-name {
    font-weight: 700;
    color: #8b0000;
}

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

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

    .hero-content {
        padding: 40px 24px;
    }

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

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 24px;
    }

    .cards-grid {
        padding: 0 24px;
    }

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

    .intro-section,
    .services-cards,
    .testimonials-inline,
    .cta-section,
    .form-section,
    .disclaimer-section,
    .footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}