/* 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.7;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #38b2ac;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c7a7b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.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;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #81e6d9;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #38b2ac;
    color: #ffffff;
}

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

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

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

/* Header and Navigation */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.brand a {
    color: #2d3748;
}

.ad-notice {
    font-size: 0.8rem;
    color: #718096;
    padding: 0.3rem 0.8rem;
    background-color: #edf2f7;
    border-radius: 4px;
}

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

.nav-menu a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #38b2ac;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(45, 55, 72, 0.85) 100%);
    padding: 5rem 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
}

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

.hero-subtext {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Content Containers */
.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Story Intro Section */
.story-intro {
    background-color: #f7fafc;
}

.intro-text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 700;
}

.section-title-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2d3748;
    font-weight: 700;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
}

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

.split-content {
    flex: 1;
}

.split-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
}

/* Problem Section */
.problem-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.problem-section .split-layout {
    max-width: 1200px;
    margin: 0 auto;
}

/* Insight Section */
.insight-section {
    background-color: #edf2f7;
    padding: 5rem 2rem;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.card p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #2d3748;
    color: #ffffff;
    padding: 5rem 2rem;
}

.testimonial {
    margin-bottom: 2.5rem;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    border-left: 4px solid #38b2ac;
}

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

/* Method Section */
.method-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.method-steps {
    max-width: 1000px;
    margin: 3rem auto 0;
}

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

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #38b2ac;
    line-height: 1;
    min-width: 80px;
}

.step h3 {
    margin-bottom: 0.8rem;
}

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

/* Services Preview */
.services-preview {
    background-color: #f7fafc;
    padding: 5rem 2rem;
}

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

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

.service-card:hover {
    border-color: #38b2ac;
    box-shadow: 0 8px 25px rgba(56, 178, 172, 0.15);
}

.service-card.featured {
    border-color: #38b2ac;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #ed8936;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

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

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

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background-color: #38b2ac;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #319795;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 178, 172, 0.3);
}

/* Form Section */
.form-section {
    background-color: #2d3748;
    color: #ffffff;
    padding: 5rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #cbd5e0;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #38b2ac;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #319795;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 178, 172, 0.4);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #edf2f7;
    padding: 3rem 2rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.7;
    font-style: italic;
}

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

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

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

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

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

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

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

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

.footer-section a:hover {
    color: #38b2ac;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #cbd5e0;
}

/* About Page Styles */
.about-story {
    padding: 5rem 2rem;
}

.about-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
}

.philosophy-section {
    background-color: #f7fafc;
    padding: 5rem 2rem;
}

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

.philosophy-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #38b2ac;
}

.philosophy-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

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

/* Results Section */
.results-section {
    padding: 5rem 2rem;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #38b2ac;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* Approach Section */
.approach-section {
    background-color: #edf2f7;
    padding: 5rem 2rem;
}

/* CTA Section */
.cta-section {
    background-color: #38b2ac;
    padding: 4rem 2rem;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e6fffa;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #2d3748;
    color: #ffffff;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a202c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Services Page Styles */
.services-detailed {
    padding: 3rem 2rem;
}

.service-detailed {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    position: relative;
}

.service-detailed.featured-service {
    border-color: #38b2ac;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ed8936;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header {
    background: linear-gradient(135deg, #edf2f7 0%, #e6fffa 100%);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #38b2ac;
}

.service-body {
    padding: 2.5rem;
}

.service-description ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 0.7rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-cta {
    margin-top: 2rem;
}

.btn-select-service {
    padding: 1.2rem 2.5rem;
    background-color: #38b2ac;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #319795;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 178, 172, 0.3);
}

/* Guarantee Section */
.guarantee-section {
    background-color: #fffaf0;
    padding: 4rem 2rem;
}

.guarantee-section h2 {
    color: #2d3748;
    text-align: center;
    margin-bottom: 1rem;
}

.guarantee-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    margin-bottom: 0.8rem;
    color: #2d3748;
}

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

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-placeholder img {
    width: 100%;
}

.map-caption {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background-color: #f7fafc;
    padding: 4rem 2rem;
}

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

.faq-item h3 {
    color: #2d3748;
    margin-bottom: 0.8rem;
}

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

/* Thanks Page Styles */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    display: inline-block;
}

.thanks-container h1 {
    color: #2d3748;
    margin-bottom: 1.5rem;
}

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

.thanks-details {
    background-color: #f0fdfa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details strong {
    color: #38b2ac;
}

.thanks-message h2 {
    margin: 2.5rem 0 1.5rem;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    text-align: left;
}

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

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

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

.thanks-support {
    background-color: #edf2f7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-support h3 {
    margin-bottom: 0.5rem;
}

.thanks-actions {
    margin-top: 2.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.last-updated {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1rem 2rem;
    color: #4a5568;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

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

.cookie-table td {
    color: #4a5568;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-subtext {
        font-size: 1.1rem;
    }

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

    .split-layout.reverse {
        flex-direction: column;
    }

    .feature-cards {
        flex-direction: column;
    }

    .service-grid {
        flex-direction: column;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }

    .contact-layout {
        flex-direction: column;
    }

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

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

    .philosophy-grid,
    .stats-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .section-title,
    .section-title-center {
        font-size: 1.8rem;
    }

    .service-price {
        font-size: 1.6rem;
    }

    .service-price-large {
        font-size: 2rem;
    }
}