* {
    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;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #27ae60;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

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

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

.why-choose-split {
    display: flex;
}

.why-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.why-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #fff;
}

.why-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.why-content p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.services-showcase {
    padding: 80px 40px;
    background-color: #fafafa;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.service-card-split {
    display: flex;
    margin-bottom: 50px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.service-details {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
    font-size: 15px;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.form-section-split {
    display: flex;
    min-height: 500px;
}

.form-intro {
    flex: 1;
    padding: 70px 60px;
    background-color: #34495e;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    padding: 70px 60px;
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

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

.trust-split {
    display: flex;
}

.trust-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #fff;
}

.trust-content h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #777;
    font-weight: 600;
}

.trust-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 20px;
}

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

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

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

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 5px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

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

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

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-header-split {
    display: flex;
    min-height: 400px;
}

.page-header-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #34495e;
    color: #fff;
}

.page-header-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-header-content p {
    font-size: 18px;
    line-height: 1.6;
}

.page-header-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.about-story-split {
    display: flex;
}

.story-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #fff;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.story-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 35px 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

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

.process-split {
    display: flex;
}

.process-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.process-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #fff;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.process-step {
    margin-bottom: 35px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-banner-split {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 80px 60px;
    text-align: center;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-banner-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #27ae60;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    transition: transform 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-split {
    display: flex;
    margin-bottom: 60px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: #555;
}

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.contact-split-layout {
    display: flex;
    min-height: 500px;
}

.contact-info-section {
    flex: 1;
    padding: 70px 60px;
    background-color: #fff;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

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

.email-display {
    color: #555;
    pointer-events: none;
}

.contact-image-section {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-cta-section {
    padding: 80px 60px;
    text-align: center;
    background-color: #f9f9f9;
}

.contact-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f9f9f9;
}

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

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

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

.thanks-message {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    margin: 35px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.legal-page {
    padding: 60px 40px;
    background-color: #fff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

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

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .hero-split,
    .why-choose-split,
    .service-card-split,
    .form-section-split,
    .trust-split,
    .page-header-split,
    .about-story-split,
    .process-split,
    .service-detail-split,
    .contact-split-layout {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 20px;
    }

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

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

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

    .footer-content {
        flex-direction: column;
    }
}