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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    width: 100%;
    padding: 0 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3182ce;
    color: #ffffff;
}

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

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

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

/* Header */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3182ce;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.4rem 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    white-space: nowrap;
}

/* Split Container - Core Layout */
.split-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
}

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

/* Hero Section */
.hero-split {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-split .split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
section {
    padding: 4rem 0;
}

.intro-section {
    background-color: #f7fafc;
}

.intro-section .split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.content-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Services Preview */
.services-preview .split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-card .price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3182ce;
    margin-top: 1rem;
}

.link-arrow {
    display: inline-block;
    color: #3182ce;
    font-weight: 600;
    margin-top: 1rem;
}

.link-arrow:hover {
    color: #2c5aa0;
    text-decoration: underline;
}

/* Benefits Section */
.benefits-section {
    background-color: #edf2f7;
}

.benefits-section .split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2d3748;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Approach Section */
.approach-section .split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background-color: #f7fafc;
}

.cta-section .split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.trust-indicators {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 2rem;
    color: #3182ce;
    margin-bottom: 0.25rem;
}

.trust-item span {
    font-size: 0.95rem;
    color: #718096;
}

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

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

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

.cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

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

.cta-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
}

.cta-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 5rem 0;
    text-align: center;
}

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

.final-cta h2 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.15rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
}

/* Footer */
.main-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Detail */
.services-detail {
    padding: 2rem 0;
}

.services-detail .split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.services-detail .split-container:last-child {
    border-bottom: none;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.service-features {
    margin: 2rem 0;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
}

.service-features ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 2rem 0;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #3182ce;
}

/* CTA Banner */
.cta-banner {
    background-color: #edf2f7;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.cta-banner p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.expertise-areas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-item {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.expertise-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.expertise-item p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Contact Page */
.contact-section .split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.contact-detail {
    color: #4a5568;
    line-height: 1.8;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.faq-section {
    background-color: #f7fafc;
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-message {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #3182ce;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
    margin-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    color: #2d3748;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: #2d3748;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content a {
    color: #3182ce;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2c5aa0;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: #718096;
}

/* Tablet and up */
@media (min-width: 768px) {
    .split-container {
        flex-direction: row;
        gap: 4rem;
    }

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

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .nav-menu {
        gap: 2.5rem;
    }

    .service-cards {
        flex-direction: row;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

    .expertise-areas {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expertise-item {
        flex: 1;
        min-width: 250px;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .map-placeholder img {
        height: 100%;
        min-height: 400px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }
}
