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

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;
    transition: all 0.3s ease;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
    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;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-cookie-accept {
    background: #3498db;
    color: #ffffff;
}

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

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

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

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 9999;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    max-width: calc(100% - 40px);
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
    white-space: nowrap;
}

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

.nav-links a {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-btn {
    background: #3498db;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Hero - Visual Heavy Style */
.hero-visual-heavy {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -90px;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.4rem;
    color: #ecf0f1;
    font-weight: 300;
}

/* Insight Hook Section */
.insight-hook {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.insight-hook h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.insight-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.cta-inline {
    margin-top: 2.5rem;
    text-align: center;
}

/* Buttons */
.btn-primary,
.btn-primary-large,
.btn-secondary,
.btn-submit,
.btn-service-select {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-primary-large {
    background: #e74c3c;
    color: #ffffff;
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
}

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

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

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.btn-service-select {
    background: #9b59b6;
    color: #ffffff;
}

.btn-service-select:hover {
    background: #8e44ad;
    transform: translateY(-2px);
}

/* Story Section */
.story-section {
    padding: 7rem 0;
    background: #ffffff;
}

.story-content {
    flex: 1;
    padding-right: 3rem;
}

.story-content h3 {
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image {
    flex: 1;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.story-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-image-side {
    width: 100%;
    border-radius: 12px;
}

/* Problem Amplification */
.problem-amplification {
    padding: 6rem 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
}

.problem-amplification h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

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

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.problem-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ecf0f1;
}

/* Floating CTA */
.cta-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

.cta-floating-btn {
    background: #e74c3c;
    color: #ffffff;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    display: inline-block;
}

.cta-floating-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Reveal Section */
.reveal-section {
    padding: 7rem 0;
    background: #f8f9fa;
}

.reveal-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.reveal-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #555;
}

.pillar-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pillar-item {
    position: relative;
    padding: 2.5rem;
    padding-left: 5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pillar-number {
    position: absolute;
    top: 2.5rem;
    left: 2rem;
    font-size: 3rem;
    font-weight: 900;
    color: #3498db;
    opacity: 0.3;
}

.pillar-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pillar-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Trust Builders */
.trust-builders {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.trust-builders h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #3498db;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 1rem;
}

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

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

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.benefit-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-block img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-block h3 {
    font-size: 2rem;
    color: #2c3e50;
}

.benefit-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* How It Works */
.how-it-works {
    padding: 7rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.how-it-works h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ecf0f1;
}

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

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

.urgency-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Services Section */
.services-section {
    padding: 7rem 0;
    background: #f8f9fa;
}

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

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #555;
}

.service-selection-form {
    width: 100%;
}

.services-pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #e74c3c;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

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

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.service-includes span {
    font-size: 0.95rem;
    color: #7f8c8d;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes span::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-select-label {
    display: block;
    cursor: pointer;
}

.service-select-label input[type="radio"] {
    display: none;
}

.select-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #ecf0f1;
    color: #2c3e50;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-select-label input[type="radio"]:checked + .select-button {
    background: #27ae60;
    color: #ffffff;
}

.select-button:hover {
    background: #bdc3c7;
}

.service-select-label input[type="radio"]:checked + .select-button:hover {
    background: #229954;
}

/* Form Section */
.form-section {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.form-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Final CTA */
.final-cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

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

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    margin-bottom: 0.7rem;
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

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

/* Page Header */
.page-header {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.header-lead {
    font-size: 1.4rem;
    font-weight: 300;
}

/* About Page Sections */
.about-story {
    padding: 6rem 0;
    background: #ffffff;
}

.story-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

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

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

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.philosophy-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.philosophy-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.philosophy-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #555;
}

.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 6px 25px rgba(0, 0, 0, 0.15);
}

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

.team-role {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Results Section */
.results-section {
    padding: 6rem 0;
    background: #2c3e50;
    color: #ffffff;
}

.results-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #3498db;
    display: block;
    margin-bottom: 1rem;
}

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

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

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

.values-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 1.5rem;
    padding-left: 3rem;
    margin-bottom: 1rem;
    background: #ffffff;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Services Detailed */
.services-detailed {
    padding: 6rem 0;
    background: #f8f9fa;
}

.service-detail-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #e74c3c;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ecf0f1;
}

.service-detail-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
}

.service-price-large {
    font-size: 3rem;
    font-weight: 900;
    color: #3498db;
}

.service-detail-content h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

/* FAQ Section */
.faq-section,
.faq-contact {
    padding: 6rem 0;
    background: #ffffff;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

/* Contact Page */
.contact-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

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

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

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

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

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.contact-note p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

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

.contact-form-area p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-message {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-message p {
    margin-bottom: 1rem;
}

.contact-message ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.contact-message ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.map-image {
    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: #ffffff;
    padding: 2rem;
    text-align: center;
}

.map-overlay p {
    font-size: 1.2rem;
    margin: 0;
}

/* Thanks Page */
.thanks-section {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

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

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

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

.step-number {
    background: rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.thanks-service-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    display: none;
}

.thanks-service-info p {
    font-size: 1.2rem;
    margin: 0;
}

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

.thanks-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.thanks-note p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.thanks-note a {
    color: #ffffff;
    text-decoration: underline;
}

/* While Waiting */
.while-waiting {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.waiting-suggestions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.suggestion-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.suggestion-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.suggestion-card a {
    color: #3498db;
    font-weight: 600;
    text-decoration: underline;
}

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

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

.legal-intro {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #555;
}

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

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

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

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

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

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-block {
        flex: 1 1 calc(50% - 2rem);
    }

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

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

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

    .form-group {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .form-group.full-width {
        flex: 1 1 100%;
    }

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

    .footer-column {
        flex: 1;
    }

    .philosophy-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .team-member {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

    .stat-box {
        flex: 1 1 calc(50% - 1.25rem);
    }

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

    .contact-info {
        flex: 1;
    }

    .contact-form-area {
        flex: 1;
    }

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

    .waiting-suggestions {
        flex-direction: row;
    }

    .suggestion-card {
        flex: 1;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4rem;
    }

    .problem-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.67rem);
    }

    .benefit-block {
        flex: 1 1 calc(33.333% - 2.33rem);
    }

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

    .team-member {
        flex: 1 1 calc(33.333% - 2rem);
    }

    .stat-box {
        flex: 1 1 calc(25% - 1.875rem);
    }
}

/* Mobile Specific */
@media (max-width: 767px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
        top: 10px;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .nav-cta-btn {
        width: 100%;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

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

    .cta-floating {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .cta-floating-btn {
        width: 100%;
        text-align: center;
    }

    .service-detail-header {
        flex-direction: column;
    }
}