/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Navigation - Split Style */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-right a {
    color: #333;
    font-weight: 500;
}

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

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

.hero-left {
    flex: 1;
    padding: 80px 5% 80px 8%;
    background-color: #f8fafc;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1e293b;
}

.hero-left p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 35px;
}

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

.hero-right img {
    width: 100%;
    height: 600px;
}

/* CTA Buttons */
.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #2563eb;
    color: #fff;
}

.cta-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: #334155;
    color: #fff;
}

.cta-secondary:hover {
    background-color: #1e293b;
}

/* Info Split Section */
.info-split {
    display: flex;
    align-items: center;
    min-height: 500px;
}

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

.info-image {
    flex: 1;
    background-color: #cbd5e1;
}

.info-image img {
    width: 100%;
    height: 500px;
}

.info-content {
    flex: 1;
    padding: 60px 8%;
}

.info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1e293b;
}

.info-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 20px;
}

/* Value Cards */
.value-cards {
    padding: 80px 5%;
    background-color: #f8fafc;
}

.value-cards h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.cards-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card img {
    width: 100%;
    height: 240px;
    background-color: #e2e8f0;
}

.value-card h3 {
    font-size: 1.4rem;
    margin: 20px 20px 10px;
    color: #1e293b;
}

.value-card p {
    font-size: 1rem;
    color: #64748b;
    margin: 0 20px 25px;
}

/* Split Content Section */
.split-content {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: flex-start;
}

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

.content-left h2, .content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1e293b;
}

.content-left p, .content-right p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 20px;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    padding: 25px;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.service-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 15px;
}

.service-item .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

/* Form Container */
.form-container {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.form-container h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #1e293b;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 15px;
    background-color: #2563eb;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Testimonial Split */
.testimonial-split {
    display: flex;
    align-items: center;
    background-color: #0f172a;
    color: #fff;
    min-height: 400px;
}

.testimonial-content {
    flex: 1;
    padding: 60px 8%;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    color: #94a3b8;
}

.testimonial-image {
    flex: 1;
    background-color: #1e293b;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #eff6ff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.cta-section p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 35px;
}

/* Footer Split */
.footer-split {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 5% 30px;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

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

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

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 25px 5%;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept, .btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: #475569;
    color: #fff;
}

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

.cookie-link {
    color: #94a3b8;
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: #fff;
}

/* Page Hero */
.page-hero {
    padding: 80px 5%;
    text-align: center;
    background-color: #f8fafc;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.page-hero p {
    font-size: 1.3rem;
    color: #64748b;
}

/* Values Section */
.values-section {
    padding: 80px 5%;
    background-color: #fff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2563eb;
}

.value-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Service Detail Split */
.service-detail-split {
    display: flex;
    padding: 60px 5%;
    gap: 50px;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.service-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 18px;
}

.service-features {
    margin: 25px 0;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #334155;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.service-price {
    margin-top: 25px;
    padding: 20px;
    background-color: #eff6ff;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 1rem;
    color: #475569;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

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

.service-image img {
    width: 100%;
    height: 400px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e293b;
}

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

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2563eb;
}

.contact-block p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.contact-block .no-link {
    color: #334155;
    font-weight: 500;
}

.contact-map {
    flex: 1;
    background-color: #e2e8f0;
}

.contact-map img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
}

/* Info Section */
.info-section {
    padding: 80px 5%;
    background-color: #f8fafc;
}

.info-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-item {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.info-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Thanks Hero */
.thanks-hero {
    padding: 80px 5%;
    min-height: 600px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-content > p {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #eff6ff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: #1e293b;
}

.steps-container {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.step p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1e40af;
}

.btn-secondary {
    background-color: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #eff6ff;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.last-updated {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #334155;
}

.legal-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.legal-content ul li {
    list-style: disc;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e40af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split, .info-split, .split-content, .service-detail-split, .contact-split {
        flex-direction: column;
    }

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

    .hero-left, .hero-right, .info-image, .info-content, .content-left, .content-right, .service-content, .service-image, .contact-info, .contact-map {
        flex: none;
        width: 100%;
    }

    .form-container {
        position: static;
    }

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

    .testimonial-content, .testimonial-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .info-content h2, .content-left h2, .content-right h2 {
        font-size: 1.8rem;
    }

    .value-cards h2, .cta-section h2 {
        font-size: 2rem;
    }

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

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

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