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

.ad-disclosure {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8eef2;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.header-right a:hover {
    color: #27ae60;
}

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

.hero-content {
    flex: 1;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.hero-image {
    flex: 1;
    background: #cbd5e0;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.section-split {
    display: flex;
    align-items: stretch;
}

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

.split-content {
    flex: 1;
    padding: 80px 6%;
    background: #ffffff;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
    line-height: 1.3;
}

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

.split-content ul {
    list-style: none;
    margin-top: 25px;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #4a5568;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.split-image {
    flex: 1;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.services-preview {
    padding: 80px 5%;
    background: #f8fafb;
}

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

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

.services-intro p {
    font-size: 18px;
    color: #546e7a;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 25px;
}

.btn-select {
    margin: 0 25px 25px;
    padding: 12px 24px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #229954;
}

.form-section-split {
    padding: 80px 5%;
    background: #ffffff;
}

.form-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-intro p {
    font-size: 17px;
    color: #546e7a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafb;
    padding: 40px;
    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: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s;
}

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

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

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

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

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.page-hero {
    padding: 80px 5%;
    background: #f8fafb;
    text-align: center;
}

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

.page-hero p {
    font-size: 19px;
    color: #546e7a;
}

.values-section {
    padding: 80px 5%;
    background: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

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

.cta-section {
    padding: 100px 5%;
    background: #27ae60;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section .cta-primary {
    background: #ffffff;
    color: #27ae60;
}

.cta-section .cta-primary:hover {
    background: #ecf0f1;
}

.services-detailed {
    padding: 40px 5%;
}

.service-detail-split {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: #4a5568;
}

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

.service-detail-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 24px;
    line-height: 1;
}

.price-highlight {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #229954;
}

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    background: #e2e8f0;
}

.pricing-notes {
    background: #f8fafb;
    padding: 50px 8%;
    margin-top: 40px;
    border-radius: 8px;
}

.pricing-notes h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.pricing-notes p,
.pricing-notes ul {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.pricing-notes ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.contact-info {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

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

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background: #e2e8f0;
}

.map-note {
    font-size: 14px;
    color: #546e7a;
    margin-top: 15px;
    line-height: 1.6;
}

.faq-section {
    padding: 60px 8%;
    background: #f8fafb;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.thanks-section {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-details {
    margin: 30px 0;
}

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

.service-confirmed {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}

.service-confirmed p {
    font-size: 17px;
    color: #27ae60;
    font-weight: 600;
    margin: 0;
}

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

.thanks-next h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

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

.thanks-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #229954;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #27ae60;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #27ae60;
    color: #ffffff;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #e2e8f0;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

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

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: #4a5568;
}

.legal-page ul {
    margin: 15px 0 20px 25px;
    list-style: disc;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-page a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #229954;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 20px;
}

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

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

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

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    background: #34495e;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.footer-disclaimer strong {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ecf0f1;
    padding: 25px 5%;
    box-shadow: 0 -2px 10px 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: 30px;
}

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

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

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background: transparent;
    color: #ecf0f1;
    border: 2px solid #7f8c8d;
}

.btn-reject:hover {
    background: #7f8c8d;
}

@media (max-width: 968px) {
    .hero-split,
    .section-split,
    .service-detail-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .section-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-content {
        padding: 50px 5%;
    }

    .hero-image,
    .split-image {
        min-height: 350px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .values-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .header-right {
        gap: 20px;
        font-size: 14px;
    }

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

    .split-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
    }

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

    .page-hero h1 {
        font-size: 36px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}