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

:root {
    --primary-color: #1e40af;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #22c55e;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept {
    background: var(--success-color);
    color: white;
}

.btn-accept:hover {
    background: #16a34a;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-block {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

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

/* Intro Block */
.intro-block {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.intro-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-block p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

/* Problem Amplify Section */
.problem-amplify {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.split-text,
.split-image {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.6;
    border-left: 3px solid var(--secondary-color);
    margin-bottom: 1rem;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Insight Reveal */
.insight-reveal {
    background: #fef3c7;
    padding: 4rem 2rem;
}

.insight-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.insight-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.emphasis-text {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.25rem;
}

/* Services Section */
.services-overview {
    background: var(--bg-white);
    padding: 5rem 2rem;
}

.services-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

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

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

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

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

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

.btn-service:hover {
    background: #1e3a8a;
    transform: scale(1.02);
}

/* Trust Builder */
.trust-builder {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.trust-builder h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.cred-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

.cred-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cred-item span {
    color: var(--text-light);
}

/* Testimonials */
.testimonials-flow {
    background: var(--bg-white);
    padding: 4rem 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
}

.quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.author {
    font-weight: 600;
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

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

.steps-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

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

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Urgency Block */
.urgency-block {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 4rem 2rem;
}

.urgency-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-block p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* CTAs */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: white;
    color: var(--primary-color);
}

.cta-primary:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

.cta-secondary {
    background: white;
    color: var(--error-color);
}

.cta-secondary:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

/* Form Section */
.form-section {
    background: var(--bg-white);
    padding: 5rem 2rem;
}

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

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

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

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

.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.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final Assurance */
.final-assurance {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.final-assurance h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.final-assurance p {
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-col ul a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d97706;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

/* Story Section */
.story-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Mission Block */
.mission-block {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

/* Values Section */
.values-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Intro */
.team-intro {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.team-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.team-intro p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Impact Numbers */
.impact-numbers {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
}

/* Commitment Section */
.commitment-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.commitment-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.commitment-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.service-detail-card.highlight {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-body p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.service-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-body ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Service Guarantee */
.service-guarantee {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.service-guarantee h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-guarantee p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Contact Info */
.contact-info {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

.contact-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

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

/* Contact FAQ */
.contact-faq {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

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

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

/* Service Territories */
.service-territories {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.service-territories h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-territories > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.territories-list {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.territories-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}

.territories-list li {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    text-align: center;
}

.note-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Expectation */
.contact-expectation {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.contact-expectation h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    line-height: 1.7;
}

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

/* Alternative Contact */
.alternative-contact {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.alternative-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.alternative-contact p {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
}

.alternative-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.success-icon {
    margin-bottom: 2rem;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Next Steps */
.next-steps {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-timeline {
    position: relative;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: 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.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

/* Confirmation Details */
.confirmation-details {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
}

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

.info-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Selected Service Info */
.selected-service-info {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

.service-summary {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Urgent Notice */
.urgent-notice {
    padding: 3rem 2rem;
    background: #fef2f2;
}

.urgent-notice h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--error-color);
}

.urgent-notice p {
    line-height: 1.7;
}

.urgent-notice a {
    color: var(--error-color);
    font-weight: 600;
}

/* While You Wait */
.while-you-wait {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.while-you-wait h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

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

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-card p {
    line-height: 1.7;
    color: var(--text-light);
}

.resource-card a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Testimonial Thanks */
.testimonial-thanks {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.testimonial-thanks blockquote {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-thanks p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-thanks cite {
    font-weight: 600;
    color: var(--text-light);
    font-style: normal;
}

/* Final Reassurance */
.final-reassurance {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.final-reassurance h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.final-reassurance p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.final-reassurance a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Legal Content */
.legal-content {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

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

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

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

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

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.cookies-table td {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .hero-block {
        padding: 3rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }

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

    .contact-card {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

    .cookies-table {
        font-size: 0.875rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem 0.5rem;
    }
}
