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

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

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

ul {
    list-style: none;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

/* Header and Navigation */
.header-split {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0066cc;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

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

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

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

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0066cc;
    padding: 16px 40px;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

/* Intro Section (Split) */
.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-left {
    flex: 1;
    background-color: #d9e3eb;
}

.intro-left img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.intro-right {
    flex: 1;
    padding: 80px 5%;
}

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

.intro-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

/* Services Preview Section */
.services-preview {
    padding: 100px 5%;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    background-color: #cfd8dc;
}

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

.service-card p {
    font-size: 15px;
    margin: 0 24px 20px 24px;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 24px 24px 24px;
}

.cta-center {
    text-align: center;
}

/* Trust Section Split */
.trust-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f0f4f8;
}

.trust-content {
    flex: 1;
    padding: 80px 5%;
}

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

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 16px;
    color: #333;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
}

.trust-image {
    flex: 1;
    background-color: #d4dce3;
}

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

/* Benefits Section */
.benefits-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 16px;
    color: #4a4a4a;
}

/* Form Section Split */
.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e8f0f7;
}

.form-image {
    flex: 1;
    background-color: #c5d4e0;
}

.form-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.form-container {
    flex: 1;
    padding: 80px 5%;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background-color: #ffffff;
}

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

.contact-form button {
    align-self: flex-start;
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0052a3;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 5%;
    text-align: center;
    background-color: #1a1a1a;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

/* Footer */
.footer-main {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 5% 20px 5%;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px auto;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #bdc3c7;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    padding: 24px;
    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 {
    flex: 1;
    font-size: 14px;
    color: #333;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #0052a3;
}

.cookie-reject {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-reject:hover {
    background-color: #d0d0d0;
}

/* Page Hero */
.page-hero {
    padding: 80px 5%;
    text-align: center;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

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

.page-hero p {
    font-size: 20px;
    color: #4a4a4a;
}

/* About Split */
.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-content {
    flex: 1;
    padding: 80px 5%;
}

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

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.about-image {
    flex: 1;
    background-color: #d5dde4;
}

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

/* Values Section */
.values-section {
    padding: 100px 5%;
    background-color: #f0f4f8;
    max-width: 1400px;
    margin: 0 auto;
}

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

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #4a4a4a;
}

/* Approach Split */
.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
}

.approach-image {
    flex: 1;
    background-color: #ccd6dd;
}

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

.approach-content {
    flex: 1;
    padding: 80px 5%;
}

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

.approach-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

/* Expertise Section */
.expertise-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.expertise-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    text-align: center;
}

/* CTA About */
.cta-about {
    padding: 80px 5%;
    text-align: center;
    background-color: #0066cc;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.service-detail-content {
    flex: 1;
    padding: 60px 5%;
}

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

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

.service-features {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.service-price {
    padding: 20px;
    background-color: #e8f0f7;
    border-radius: 6px;
    display: inline-block;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-right: 12px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

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

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

/* Pricing Note */
.pricing-note {
    padding: 80px 5%;
    text-align: center;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-note h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pricing-note p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

/* Contact Split */
.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    padding: 80px 5%;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

.contact-block p {
    font-size: 16px;
    color: #4a4a4a;
}

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    background-color: #d3dbe2;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 6px;
}

.map-overlay p {
    font-size: 14px;
    color: #333;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 5%;
    text-align: center;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

/* Thanks Section */
.thanks-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    min-height: 500px;
}

.thanks-content {
    flex: 1;
    padding: 80px 5%;
}

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

.thanks-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-service-info {
    background-color: #e8f0f7;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-service-info p {
    font-size: 16px;
    margin: 0;
}

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

.thanks-image {
    flex: 1;
    background-color: #d0d9e0;
}

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

/* Next Steps */
.next-steps {
    padding: 80px 5%;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

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

.steps-grid {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0066cc;
}

.step-item p {
    font-size: 16px;
    color: #4a4a4a;
}

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

.legal-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a4a4a;
    font-weight: 500;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #333;
}

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

.legal-page ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.legal-update {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .trust-section-split,
    .form-section-split,
    .about-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .services-grid,
    .benefits-split,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .services-preview h2,
    .benefits-section h2,
    .values-section h2,
    .expertise-section h2,
    .next-steps h2,
    .pricing-note h2,
    .legal-page h1 {
        font-size: 32px;
    }

    .about-content h2,
    .approach-content h2,
    .trust-content h2,
    .form-container h2,
    .contact-info h2,
    .contact-cta h2,
    .cta-about h2,
    .final-cta h2 {
        font-size: 28px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}