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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #48bb78;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

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

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

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

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

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 1rem 0;
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    min-height: 400px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-visual {
    max-width: 400px;
    margin: 0 auto;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

/* CTA Buttons */
.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Card Components - Core of Card-Based UI Archetype */
.intro-cards {
    padding: 3rem 1.5rem;
    background: var(--bg-white);
}

.card-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.intro-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.intro-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.intro-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Services Grid - Card Layout */
.services-grid {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

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

.card-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea08, #764ba208);
}

.card-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.375rem;
}

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.card-body {
    padding: 2rem;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.card-cta {
    display: block;
    margin: 0 2rem 2rem;
    padding: 0.875rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.card-cta:hover {
    background: var(--secondary-color);
    transform: scale(1.02);
}

/* Mission Statement */
.mission-statement {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Testimonials - Card Style */
.testimonials-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea10, #764ba210);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-card strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-card span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Methodology Section */
.methodology-section {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

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

.method-content {
    flex: 1;
}

.intro-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.method-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-point {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.method-point strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.method-point p {
    margin: 0;
}

.method-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-visual svg {
    max-width: 100%;
    height: auto;
}

/* Stats Section - Card Grid */
.stats-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Form Section */
.form-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.registration-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-actions {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Final CTA */
.final-cta {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
    text-align: center;
}

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

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

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 1.5rem 2rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: center;
}

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

.btn-cookie {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-cookie.accept:hover {
    background: #38a169;
}

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    z-index: 999;
    transition: var(--transition);
}

.sticky-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Page Header */
.page-header {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9375rem;
    font-style: italic;
}

/* About Page Specific */
.origin-story {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

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

.story-content {
    flex: 1;
}

.story-visual {
    flex: 1;
}

.philosophy-cards {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.philosophy-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.philosophy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-intro {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
    text-align: center;
}

.differentiators {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

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

.diff-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.diff-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.numbers-section {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.number-block {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

.values-statement {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.value-item strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.value-item p {
    margin: 0;
}

.cta-about {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Services Page Specific */
.services-intro {
    padding: 3rem 1.5rem;
    background: var(--bg-white);
}

.intro-cards-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.info-card p {
    margin: 0;
}

.services-catalog {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.catalog-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-detailed-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}

.featured-service {
    border: 2px solid var(--accent-color);
}

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

.service-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea08, #764ba208);
    border-bottom: 1px solid var(--border-color);
}

.service-title-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.duration, .level {
    padding: 0.375rem 0.875rem;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.service-content {
    padding: 2rem;
}

.service-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.benefits-list, .includes-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.benefits-list li, .includes-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.includes-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-footer {
    padding: 0 2rem 2rem;
}

.btn-enroll {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-enroll:hover {
    background: var(--secondary-color);
    transform: scale(1.02);
}

.pricing-transparency {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.transparency-list {
    margin-top: 1.5rem;
}

.comparison-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.header-row {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-cell.highlight {
    background: #667eea08;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.faq-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.faq-item p {
    margin: 0;
}

.cta-services {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    text-align: center;
}

/* Contact Page Specific */
.contact-main {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

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

.contact-info-block, .visit-info-block {
    flex: 1;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-text p {
    margin-bottom: 0.5rem;
}

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

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

.hours-list li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.access-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.access-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.visit-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea10, #764ba210);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.cta-note {
    font-size: 0.9375rem;
    margin-top: 1rem;
}

.map-placeholder {
    padding: 3rem 1.5rem;
    background: var(--bg-light);
}

.map-visual {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-options {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

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

.option-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.option-card h3 {
    margin-bottom: 0.75rem;
}

.option-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.option-link:hover {
    text-decoration: underline;
}

.faq-contact {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.quick-faq {
    margin-top: 2rem;
}

.final-contact-cta {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
    text-align: center;
}

/* Thanks Page Specific */
.thanks-main {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.thanks-message {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.selected-service-info {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next {
    margin: 3rem 0;
}

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

.tip-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.tip-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tip-card p {
    margin: 0;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.contact-reminder {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-testimonial {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.featured-quote {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.featured-quote p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.featured-quote footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Legal Pages */
.legal-content {
    padding: 3rem 1.5rem;
    background: var(--bg-white);
}

.legal-article {
    line-height: 1.8;
}

.legal-article h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

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

.legal-article p, .legal-article li {
    color: var(--text-medium);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9375rem;
}

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

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

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

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu a {
        padding: 0;
    }

    .nav-menu a:hover {
        background: transparent;
    }

    .hero-section {
        flex-direction: row;
        align-items: center;
        padding: 4rem 1.5rem;
    }

    .hero-content {
        text-align: left;
        margin: 0;
        flex: 1;
    }

    .hero-visual {
        flex: 1;
        margin: 0;
    }

    .card-row {
        flex-direction: row;
    }

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

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

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

    .form-group {
        flex: 1;
    }

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

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

    .testimonials-wrapper {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .method-grid {
        flex-direction: row;
        align-items: center;
    }

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

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

    .diff-item {
        flex: 1;
    }

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

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

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .intro-cards-row {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

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

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

    .option-card {
        flex: 1;
    }

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

    .tip-card {
        flex: 1;
    }

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

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

    .cookie-content p {
        text-align: left;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-card {
        flex: 1;
    }

    .numbers-grid {
        flex-wrap: nowrap;
    }

    .number-block {
        flex: 1;
    }

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