/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    text-align: center;
    font-size: 0.95rem;
}

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

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

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

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

.btn-reject {
    background: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 90%;
}

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

.nav-brand a {
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #5a6c7d;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.nav-cta {
    background: #3498db;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-visual h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hero-cta:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

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

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Story Hook Section */
.story-hook {
    padding: 6rem 0;
    background: #f8f9fa;
}

.story-hook h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.3;
}

.story-hook p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.emphasis-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e74c3c;
    margin-top: 2rem;
    font-style: italic;
}

/* Problem Amplification */
.problem-amp {
    padding: 6rem 0;
    background: #fff;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.split-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.problem-list {
    margin: 2rem 0;
}

.problem-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #5a6c7d;
    border-bottom: 1px solid #ecf0f1;
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.3rem;
}

.insight-intro {
    margin-top: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #27ae60;
}

/* Insight Reveal */
.insight-reveal {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.insight-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.insight-reveal p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.insight-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.insight-box p {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

/* Trust Builder */
.trust-builder {
    padding: 6rem 0;
    background: #f8f9fa;
}

.trust-builder h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3498db;
}

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

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.95rem;
    font-style: normal;
}

/* Method Breakdown */
.method-breakdown {
    padding: 6rem 0;
    background: #fff;
}

.method-breakdown h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.method-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ecf0f1;
    line-height: 1;
}

.method-step h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.method-step p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Visual Showcase */
.visual-showcase {
    padding: 6rem 0;
    background: #2c3e50;
    color: #fff;
}

.visual-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.showcase-item img {
    width: 100%;
    transition: transform 0.5s;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 6rem 0;
    background: #f8f9fa;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.benefit-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.benefit-block h4 {
    font-size: 1.6rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.benefit-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* CTA Sections */
.cta-soft,
.cta-section,
.final-cta {
    padding: 5rem 0;
    text-align: center;
}

.cta-soft {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.cta-soft h3,
.cta-section h2,
.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-soft p,
.cta-section p,
.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button,
.cta-button-alt {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.cta-button:hover,
.cta-button-alt:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.cta-button-alt {
    background: #27ae60;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.cta-button-alt:hover {
    background: #229954;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

/* Pricing Section */
.pricing-reveal {
    padding: 6rem 0;
    background: #fff;
}

.pricing-reveal h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #ecf0f1;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #3498db;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.course-desc {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 2rem;
}

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

.course-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1rem;
    color: #5a6c7d;
    border-bottom: 1px solid #ecf0f1;
}

.course-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.select-course,
.service-cta {
    width: 100%;
    background: #3498db;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.select-course:hover,
.service-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.select-course.selected {
    background: #27ae60;
}

/* Urgency Block */
.urgency-block {
    padding: 4rem 0;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.urgency-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.urgency-block p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
}

.urgency-note {
    font-weight: 700;
    color: #e74c3c;
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* Form Section */
.form-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.enroll-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    background: #27ae60;
    color: #fff;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta button {
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-cta button:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
}

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

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

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

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

.lead-text {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Page */
.about-intro {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-intro p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.mission-section {
    padding: 6rem 0;
    background: #fff;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.mission-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.values-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.numbers-section {
    padding: 6rem 0;
    background: #2c3e50;
    color: #fff;
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.team-section {
    padding: 6rem 0;
    background: #fff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: #5a6c7d;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.approach-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.approach-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.approach-list {
    margin: 2rem 0;
}

.approach-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Services Page */
.services-intro {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-intro p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #5a6c7d;
}

.services-catalog {
    padding: 4rem 0;
    background: #fff;
}

.service-detail-card {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #ecf0f1;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: #3498db;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.service-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-header h2 {
    font-size: 2.2rem;
    margin: 0;
}

.service-price {
    font-size: 3rem;
    font-weight: 800;
}

.service-body {
    padding: 2.5rem;
}

.service-tagline {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.content-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.content-col ul {
    margin-bottom: 1.5rem;
}

.content-col ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #5a6c7d;
}

.content-col ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.2rem;
}

.content-col p {
    color: #5a6c7d;
    font-weight: 600;
}

.comparison-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: #2c3e50;
    color: #fff;
}

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

.comparison-table th {
    font-weight: 700;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.faq-section,
.contact-faq {
    padding: 6rem 0;
    background: #fff;
}

.faq-section h2,
.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-list,
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item,
.faq-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.faq-item h4,
.faq-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p,
.faq-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.final-cta-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    text-align: center;
}

.final-cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    font-size: 1.2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-detail a {
    color: #3498db;
    font-weight: 600;
}

.contact-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-top: 2rem;
}

.contact-note p {
    margin: 0;
    color: #856404;
}

.contact-note a {
    color: #3498db;
    font-weight: 600;
}

.contact-map h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
}

/* Thanks Page */
.thanks-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    text-align: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.thanks-content {
    background: #fff;
    color: #2c3e50;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thanks-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-num {
    min-width: 50px;
    height: 50px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-text p {
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.thanks-note p {
    margin: 0;
}

.thanks-note a {
    color: #3498db;
    font-weight: 600;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: #3498db;
    color: #fff;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #bdc3c7;
}

.thanks-bonus {
    padding: 5rem 0;
    background: #f8f9fa;
}

.thanks-bonus h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bonus-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.bonus-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.bonus-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bonus-link {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    transition: color 0.3s;
}

.bonus-link:hover {
    color: #2980b9;
}

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

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

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #3498db;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
    list-style: disc;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content strong {
    color: #2c3e50;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.conservation-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #f8f9fa;
}

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

.conservation-table th,
.cookie-table th {
    background: #2c3e50;
    color: #fff;
    font-weight: 700;
}

.conservation-table thead,
.cookie-table thead {
    background: #2c3e50;
}

/* Responsive Design */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        display: flex;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

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

    .testimonial-grid {
        flex-direction: row;
    }

    .method-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .method-step {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .showcase-grid {
        flex-direction: row;
    }

    .showcase-item {
        flex: 1;
    }

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

    .pricing-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .footer-col {
        flex: 1;
    }

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

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .team-grid {
        flex-direction: row;
    }

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

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

    .content-col {
        flex: 1;
    }

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

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

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-map {
        flex: 1;
    }

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

    .bonus-grid {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .pricing-card {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .floating-nav {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

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

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

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

    .sticky-cta button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
