/* 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: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Ad Notice */
.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

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

.nav-links a {
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #2563eb;
    color: #ffffff;
}

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

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

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

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8fafc;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.hero-left p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    background-color: #e0e7ff;
    position: relative;
    overflow: hidden;
}

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

/* Split Container */
.split-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.split-content {
    flex: 1;
    padding: 0 50px;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    background-color: #f1f5f9;
}

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

/* Sections */
.intro-section,
.mission-vision,
.about-intro,
.contact-content {
    background-color: #ffffff;
}

.benefits-grid,
.services-preview,
.research-backed,
.values-section,
.team-approach,
.stats-section {
    background-color: #f8fafc;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* Benefits Grid */
.benefits-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Research Backed Section */
.research-backed {
    background-color: #eff6ff;
    padding: 80px 40px;
}

.research-backed h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.research-backed p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.8;
}

.research-backed a {
    color: #2563eb;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.form-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-left img {
    border-radius: 8px;
    background-color: #f1f5f9;
}

.form-right {
    flex: 1;
    background-color: #f8fafc;
    padding: 50px;
    border-radius: 8px;
}

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

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

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

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

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

/* Testimonials */
.testimonials {
    background-color: #f8fafc;
    padding: 80px 40px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #374151;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-style: normal;
}

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

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

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.service-item {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

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

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

.service-content-left p,
.service-content-right p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #f1f5f9;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 8px;
}

.pricing-box {
    margin-top: 25px;
    padding: 20px;
    background-color: #eff6ff;
    border-left: 4px solid #2563eb;
    display: inline-block;
    border-radius: 5px;
}

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

.price-desc {
    font-size: 0.95rem;
    color: #6b7280;
    display: block;
    margin-top: 5px;
}

/* CTA Services */
.cta-services {
    background-color: #eff6ff;
    padding: 80px 40px;
    text-align: center;
}

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

.cta-services p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 30px;
}

/* Values Section */
.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 40px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    flex: 1 1 calc(25% - 30px);
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* CTA About */
.cta-about {
    background-color: #eff6ff;
    padding: 80px 40px;
    text-align: center;
}

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

.cta-about p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 30px;
}

/* Contact Details */
.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

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

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

.contact-info-secondary {
    background-color: #f8fafc;
    padding: 80px 40px;
}

.contact-info-secondary h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-info-secondary p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Thanks Page */
.thanks-hero {
    background-color: #f8fafc;
    padding: 100px 40px;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

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

.thanks-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.thanks-service-info p {
    margin: 0;
    color: #1a1a1a;
}

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

/* Next Steps */
.next-steps {
    background-color: #ffffff;
    padding: 80px 40px;
}

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

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    background-color: #ffffff;
    padding: 60px 40px 80px;
}

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

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #374151;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: #4b5563;
    line-height: 1.7;
}

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

.legal-content em {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p,
.footer-col li {
    color: #d1d5db;
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-col a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #2563eb;
}

.reference-item {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #2a2a2a;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.7;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

    .form-wrapper {
        flex-direction: column;
    }

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

    .benefit-card,
    .value-card,
    .testimonial-card {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-left h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .split-content h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

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

    .stat-item {
        flex: 1 1 calc(50% - 20px);
    }
}