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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e8915b;
    --accent-color: #d4a373;
    --dark-bg: #1a1a1a;
    --light-bg: #f7f7f7;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --success: #4a9d5f;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

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

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

/* Navigation */
.nav-minimal {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s, transform 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(232, 145, 91, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background-color: #d47a42;
    box-shadow: 0 6px 30px rgba(232, 145, 91, 0.6);
    transform: translateY(-2px);
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4458 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 2rem;
}

.hero-content-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

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

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

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

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

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

/* Story Sections */
.story-intro {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Problem Amplification */
.problem-amplification {
    padding: 7rem 0;
    background-color: var(--white);
}

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

.problem-item {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-left: 4px solid var(--secondary-color);
}

.problem-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Curiosity Hook */
.curiosity-hook {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-bg) 100%);
}

.curiosity-hook h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.curiosity-hook p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background-color: #fff3e6;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-size: 1.3rem !important;
    margin-top: 2rem !important;
}

/* Insight Reveal */
.insight-reveal {
    padding: 7rem 0;
    background-color: var(--white);
}

.insight-reveal h2 {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.insight-reveal p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.insight-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.mission-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.future-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Solution Intro */
.solution-intro {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.solution-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.vision-list {
    list-style: none;
    margin: 2rem 0;
}

.vision-list li {
    font-size: 1.2rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.vision-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.5rem;
}

.vision-conclusion {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Trust Building */
.trust-building {
    padding: 7rem 0;
    background-color: var(--dark-bg);
    color: var(--white);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

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

.testimonial {
    background-color: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.testimonial-author {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Method Explanation */
.method-explanation {
    padding: 7rem 0;
    background-color: var(--white);
}

.method-explanation h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.method-explanation > .content-narrow > p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Social Proof */
.social-proof {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4458 100%);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
    color: var(--white);
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

/* Benefits Deep */
.benefits-deep {
    padding: 7rem 0;
    background-color: var(--light-bg);
}

.benefits-deep h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.benefits-deep > .content-narrow > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.benefit-detailed {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-detailed h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-detailed p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Urgency Section */
.urgency-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.urgency-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.urgency-highlight {
    background-color: #ffe6e6;
    padding: 1.5rem;
    border-left: 4px solid #d32f2f;
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--text-dark) !important;
}

/* Services Pricing */
.services-pricing {
    padding: 7rem 0;
    background: linear-gradient(to bottom, var(--light-bg) 0%, var(--white) 100%);
}

.services-pricing .section-title-center {
    color: var(--text-dark);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    position: relative;
    transition: all 0.3s;
}

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

.service-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0 1.5rem;
    text-align: center;
}

.btn-service {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background-color: #234a60;
    transform: scale(1.02);
}

/* Guarantee Section */
.guarantee {
    padding: 6rem 0;
    background-color: #e8f5e9;
}

.guarantee h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.guarantee p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d47a42 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
}

.btn-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

/* Contact Form */
.contact-form-section {
    padding: 7rem 0;
    background-color: var(--light-bg);
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #d47a42;
    transform: scale(1.02);
}

/* Final Reminder */
.final-reminder {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.reminder-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #234a60;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

/* Page-specific Styles */
.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4458 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

.service-detail-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.service-detail-card.featured-service {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.service-header {
    background-color: var(--light-bg);
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-body {
    padding: 2.5rem;
}

.service-description-long {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.detailed-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.detailed-features li:last-child {
    border-bottom: none;
}

.detailed-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background-color: var(--light-bg);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

/* About Page */
.about-story {
    padding: 4rem 0;
    background-color: var(--white);
}

.about-story h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-story p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-story em {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
}

.mission-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.mission-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.values-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.team-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.achievements-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4458 100%);
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.achievement {
    text-align: center;
    color: var(--white);
    min-width: 200px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.achievement p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.approach-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.approach-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.approach-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.future-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.future-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.future-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

/* Contact Page */
.contact-info-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-note {
    font-size: 0.95rem !important;
    color: var(--text-light) !important;
    font-style: italic;
}

.map-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

.faq-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

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

.faq-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--success) 0%, #357a4a 100%);
}

.thanks-content {
    text-align: center;
    color: var(--white);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 2rem;
}

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

.thanks-main {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background-color: rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.15rem;
    margin: 0;
}

.thanks-secondary {
    font-size: 1.05rem;
    opacity: 0.9;
}

.next-steps {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.steps-list li:last-child {
    border-bottom: none;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-cta {
    text-align: center;
    margin-top: 3rem;
}

.thanks-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

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

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--secondary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--white);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }

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

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

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

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

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

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

    .service-card {
        max-width: 100%;
    }

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

    .service-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }

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

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

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

    .thanks-buttons {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

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

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

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

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

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

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

    .intro-text {
        font-size: 1.05rem;
    }

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