/* Reset & Base Styles */
* {
    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: #1a1a1a;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004a99;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-accept {
    background: #00a86b;
    color: #ffffff;
}

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

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

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

/* Split Header */
.split-header {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-left {
    margin-bottom: 15px;
}

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

.header-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-right a {
    padding: 8px 0;
    font-weight: 500;
    color: #333333;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #0066cc;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 40px 20px;
    background: #f8f9fa;
}

.hero-text-container {
    max-width: 550px;
}

.hero-text-container h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text-container p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #4a4a4a;
}

.hero-right {
    background: #e9ecef;
    overflow: hidden;
}

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

/* Value Split Section */
.value-split {
    display: flex;
    flex-direction: column;
}

.value-image,
.value-content {
    flex: 1;
}

.value-image {
    min-height: 300px;
    background: #dee2e6;
}

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

.value-content {
    padding: 50px 20px;
    background: #ffffff;
}

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

.value-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.value-content ol,
.value-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.value-content li {
    margin-bottom: 12px;
    color: #4a4a4a;
}

/* Services Section */
.services-grid-split {
    padding: 60px 20px;
    background: #f8f9fa;
}

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

.services-intro h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #00a86b;
    margin-bottom: 20px;
}

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

.select-service-btn:hover {
    background: #004a99;
}

/* Trust Section */
.trust-split {
    display: flex;
    flex-direction: column;
}

.trust-content {
    flex: 1;
    padding: 50px 20px;
    background: #ffffff;
}

.trust-content h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.trust-points {
    list-style: none;
    margin: 0;
}

.trust-points li {
    padding-left: 30px;
    margin-bottom: 16px;
    position: relative;
    color: #4a4a4a;
}

.trust-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00a86b;
    font-weight: 700;
    font-size: 20px;
}

.trust-visual {
    flex: 1;
    min-height: 300px;
    background: #dee2e6;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonial Section */
.testimonial-split {
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    flex: 1;
    min-height: 300px;
    background: #dee2e6;
}

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

.testimonial-content {
    flex: 1;
    padding: 50px 20px;
    background: #f8f9fa;
}

.testimonial-content h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.testimonial-content blockquote {
    border-left: 4px solid #0066cc;
    padding-left: 24px;
    margin-bottom: 32px;
}

.testimonial-content blockquote p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 12px;
    color: #2c2c2c;
    line-height: 1.6;
}

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

/* Process Section */
.process-split {
    display: flex;
    flex-direction: column;
}

.process-visual {
    flex: 1;
    min-height: 300px;
    background: #dee2e6;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content {
    flex: 1;
    padding: 50px 20px;
    background: #ffffff;
}

.process-content h3 {
    font-size: 28px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.process-step strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Form Section */
.form-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    background: #f8f9fa;
}

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

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

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

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

.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 ease;
}

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

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

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-tertiary,
.cta-large {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background: #0066cc;
    color: #ffffff;
}

.cta-primary:hover {
    background: #004a99;
    color: #ffffff;
}

.cta-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

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

.cta-tertiary {
    background: #00a86b;
    color: #ffffff;
}

.cta-tertiary:hover {
    background: #008555;
    color: #ffffff;
}

.cta-large {
    padding: 18px 36px;
    font-size: 18px;
    background: #0066cc;
    color: #ffffff;
}

.cta-large:hover {
    background: #004a99;
    color: #ffffff;
}

/* Final CTA Section */
.final-cta-split {
    display: flex;
    flex-direction: column;
}

.final-cta-content {
    flex: 1;
    padding: 60px 20px;
    background: #0066cc;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.final-cta-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.final-cta-visual {
    flex: 1;
    min-height: 300px;
    background: #dee2e6;
}

.final-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.split-footer {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    background: #2c2c2c;
    color: #ffffff;
    gap: 20px;
}

.footer-left p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #d0d0d0;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-right a {
    color: #d0d0d0;
    font-size: 14px;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 14px 24px;
    background: #00a86b;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 168, 107, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #008555;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 168, 107, 0.5);
}

/* Services Detail */
.services-detail-split {
    padding: 40px 20px;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-content {
    flex: 1;
    padding: 40px 20px;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    color: #4a4a4a;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #0066cc;
    font-size: 20px;
}

.price-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #00a86b;
    margin-bottom: 24px;
}

.service-detail-image {
    flex: 1;
    min-height: 300px;
    background: #dee2e6;
}

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

/* Thanks Page */
.thanks-split {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.thanks-content {
    flex: 1;
    padding: 60px 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00a86b;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a4a;
    max-width: 600px;
}

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

.thanks-visual {
    flex: 1;
    min-height: 300px;
    background: #dee2e6;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-steps {
    margin-left: 20px;
}

.next-steps li {
    margin-bottom: 14px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Contact Page */
.contact-info-split {
    display: flex;
    flex-direction: column;
}

.contact-details {
    flex: 1;
    padding: 50px 20px;
    background: #ffffff;
}

.contact-details h3 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.contact-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-block .note {
    font-size: 14px;
    font-style: italic;
    color: #666666;
}

.contact-visual {
    flex: 1;
    min-height: 400px;
    background: #dee2e6;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    background: #f8f9fa;
}

.faq-content {
    flex: 1;
    margin-bottom: 40px;
}

.faq-content h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.faq-visual {
    flex: 1;
    min-height: 300px;
    background: #dee2e6;
}

.faq-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .split-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 24px 40px;
    }

    .header-left {
        margin-bottom: 0;
    }

    .header-right {
        flex-direction: row;
        gap: 32px;
    }

    .hero-text-container h2 {
        font-size: 42px;
    }

    .services-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 12px);
    }

    .footer-right {
        flex-direction: row;
        gap: 24px;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .faq-split {
        flex-direction: row;
        gap: 40px;
    }

    .faq-content {
        margin-bottom: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-split,
    .value-split,
    .trust-split,
    .testimonial-split,
    .process-split,
    .final-cta-split,
    .thanks-split,
    .contact-info-split {
        flex-direction: row;
        min-height: 500px;
    }

    .value-split.reverse,
    .testimonial-split.reverse,
    .service-detail-card.reverse {
        flex-direction: row-reverse;
    }

    .hero-left,
    .hero-right {
        flex: 1;
    }

    .hero-left {
        padding: 60px;
    }

    .value-content,
    .trust-content,
    .testimonial-content,
    .process-content,
    .contact-details {
        padding: 80px 60px;
    }

    .services-container {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 16px);
    }

    .split-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 40px 60px;
    }

    .footer-right {
        gap: 32px;
    }

    .service-detail-card {
        flex-direction: row;
        gap: 40px;
    }

    .service-detail-content {
        padding: 60px 40px;
    }

    .thanks-content {
        padding: 80px 60px;
    }

    .form-intro h3,
    .final-cta-content h3 {
        font-size: 38px;
    }
}

@media (min-width: 1200px) {
    .hero-text-container h2 {
        font-size: 48px;
    }

    .value-content h3,
    .trust-content h3,
    .testimonial-content h3,
    .process-content h3 {
        font-size: 34px;
    }
}
