/* Reset and 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: #2c3e50;
    background-color: #ffffff;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #3498db;
    border-bottom-color: #3498db;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.5rem 1rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

/* Split Screen Layout System */
.split-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

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

.split-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #2c3e50;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #34495e;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: #546e7a;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #546e7a;
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-primary,
.btn-submit {
    background-color: #3498db;
    color: #ffffff;
}

.cta-primary:hover,
.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

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

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-split {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Feature Grid */
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Services */
.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
}

.service-card-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

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

.service-content {
    flex: 1;
    padding: 2.5rem;
}

.service-image {
    flex: 1;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.price-highlight {
    font-size: 2.25rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.service-includes {
    margin-top: 2rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.service-includes h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-includes ul {
    margin-bottom: 0;
}

/* Sections */
.value-proposition,
.methodology-section,
.services-overview,
.testimonials-section,
.cta-section-inline,
.services-form-section,
.why-now-section,
.disclaimer-section,
.story-section,
.values-section,
.methodology-deep,
.team-philosophy,
.commitment-section,
.cta-about,
.services-hero,
.service-detailed,
.how-it-works,
.cta-services,
.contact-hero,
.contact-info-section,
.why-reach-out,
.what-to-expect,
.alternative-contact,
.thanks-hero,
.next-steps,
.meanwhile-section,
.explore-more,
.contact-reminder,
.legal-header,
.legal-content,
.about-hero {
    padding: 4rem 0;
}

.services-overview {
    background-color: #f8f9fa;
}

.testimonials-section {
    background-color: #ecf0f1;
}

.cta-section-inline {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

.cta-section-inline h2,
.cta-section-inline p {
    color: #ffffff;
}

.cta-section-inline .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

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

.services-form-section {
    background-color: #f8f9fa;
}

.disclaimer-section {
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #856404;
}

/* Container Variants */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Testimonials */
.testimonial-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-block p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.testimonial-block cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Form Styles */
.service-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.trust-indicators {
    margin-top: 2rem;
}

.trust-item {
    margin-bottom: 1.5rem;
}

.trust-item strong {
    color: #2c3e50;
}

/* Values Section */
.values-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-card {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 3rem;
}

.value-card.reverse {
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
    padding: 2rem;
}

/* Process Steps */
.process-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step.reverse {
    flex-direction: row-reverse;
}

.step-number {
    background-color: #3498db;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.75rem;
}

.step-content p {
    margin-bottom: 0;
}

/* Service Detailed */
.service-detailed {
    padding: 4rem 0;
}

.service-detailed.alt {
    background-color: #f8f9fa;
}

/* Contact Page */
.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.contact-detail p {
    margin-bottom: 0.5rem;
}

.reason-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

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

.reason-item h3 {
    margin-bottom: 0.75rem;
}

.contact-quick {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.contact-quick p {
    margin-bottom: 0.75rem;
}

.contact-quick p:last-child {
    margin-bottom: 0;
}

/* Thanks Page */
.thanks-message {
    font-size: 1.25rem;
    color: #27ae60;
    font-weight: 600;
}

.step-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    background-color: #3498db;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-content p {
    margin-bottom: 0;
}

.preparation-list {
    margin: 1.5rem 0;
}

.explore-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.explore-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.explore-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.2);
}

.explore-card h3 {
    margin-bottom: 0.75rem;
}

.explore-card p {
    margin-bottom: 0;
    color: #7f8c8d;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 3rem 0;
}

.legal-header h1 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #bdc3c7;
    margin-bottom: 0;
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    margin-top: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dfe6e9;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #546e7a;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
}

.footer-section a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.sticky-cta a {
    display: block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        padding: 2rem 1rem;
    }

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

    .value-card,
    .value-card.reverse,
    .process-step,
    .process-step.reverse {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

    .explore-links {
        flex-direction: column;
    }

    .reason-item {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}