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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #FFFFFF;
    font-size: 1.1rem;
}

/* Accessibility and Senior-Friendly Design */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1F2937;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #6B7280;
    margin-bottom: 2rem;
}

a {
    color: #7C3AED;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5B21B6;
    text-decoration: underline;
}

a:focus {
    outline: 2px solid #7C3AED;
    outline-offset: 2px;
}

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

.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: #F9FAFB;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.align-center {
    align-items: center;
}

.gap-large {
    gap: 4rem;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Header and Navigation */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7C3AED;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

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

.nav-link {
    color: #374151;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #EDE9FE;
    color: #7C3AED;
    text-decoration: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        transition: height 0.3s ease;
    }
    
    .nav-menu.active {
        height: 400px;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-primary {
    background-color: #7C3AED;
    color: #FFFFFF;
    border-color: #7C3AED;
}

.btn-primary:hover {
    background-color: #5B21B6;
    border-color: #5B21B6;
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6B7280;
    color: #FFFFFF;
    border-color: #6B7280;
}

.btn-secondary:hover {
    background-color: #4B5563;
    border-color: #4B5563;
    color: #FFFFFF;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: #7C3AED;
    border-color: #7C3AED;
}

.btn-outline:hover {
    background-color: #7C3AED;
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #F3E8FF 0%, #E0E7FF 100%);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #6B7280;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #F3E8FF 0%, #E0E7FF 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    color: #6B7280;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5E7EB;
}

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

.card h3 {
    color: #7C3AED;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-icon {
    margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5E7EB;
}

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

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

.service-card h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Service Detail Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-detail-card {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    color: #7C3AED;
    margin: 0;
    font-size: 1.5rem;
}

.service-description {
    margin-bottom: 2rem;
    color: #6B7280;
    line-height: 1.7;
}

.service-features h4 {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.service-schedule {
    margin-bottom: 2rem;
}

.service-schedule h4 {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-price {
    text-align: center;
    padding: 1rem;
    background-color: #F3E8FF;
    border-radius: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #7C3AED;
}

/* Team Cards */
.team-card {
    text-align: center;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #E5E7EB;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.team-card h3 {
    color: #7C3AED;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #7C3AED;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-member-card {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.team-member-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-member-info h3 {
    color: #7C3AED;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-qualifications {
    margin: 1.5rem 0;
}

.team-qualifications h4 {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.team-qualifications ul {
    list-style: none;
    margin-bottom: 1rem;
}

.team-qualifications li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.team-qualifications li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7C3AED;
    font-weight: bold;
}

.team-bio {
    margin: 1.5rem 0;
    line-height: 1.7;
    color: #6B7280;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.specialty-tag {
    background-color: #EDE9FE;
    color: #7C3AED;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #E5E7EB;
}

.stars {
    color: #F59E0B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #7C3AED;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Goal Cards */
.goal-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #E5E7EB;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-icon {
    margin-bottom: 1.5rem;
}

.goal-card h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta-content h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: #FFFFFF;
    color: #7C3AED;
    border-color: #FFFFFF;
}

.cta-section .btn-primary:hover {
    background-color: #F9FAFB;
    border-color: #F9FAFB;
    color: #5B21B6;
}

.cta-section .btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.cta-section .btn-outline:hover {
    background-color: #FFFFFF;
    color: #7C3AED;
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: #D1D5DB;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #D1D5DB;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #7C3AED;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #D1D5DB;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #7C3AED;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

/* Package Cards */
.package-card {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border-color: #7C3AED;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #7C3AED;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.package-price {
    margin-bottom: 2rem;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7C3AED;
}

.package-price .period {
    font-size: 1rem;
    color: #6B7280;
    margin-left: 0.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.package-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #FEF3C7;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    color: #92400E;
}

/* Schedule */
.schedule-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 120px repeat(7, 1fr);
    gap: 1px;
    min-width: 800px;
    background-color: #E5E7EB;
    border-radius: 0.5rem;
    overflow: hidden;
}

.schedule-header {
    background-color: #7C3AED;
    color: #FFFFFF;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
}

.schedule-time {
    background-color: #F9FAFB;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    color: #374151;
}

.schedule-cell {
    background-color: #FFFFFF;
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-gentle {
    background-color: #DBEAFE;
    color: #1E40AF;
    font-weight: 500;
}

.class-chair {
    background-color: #D1FAE5;
    color: #047857;
    font-weight: 500;
}

.class-meditation {
    background-color: #FEE2E2;
    color: #DC2626;
    font-weight: 500;
}

.class-group {
    background-color: #F3E8FF;
    color: #7C3AED;
    font-weight: 500;
}

.class-therapy {
    background-color: #FEF3C7;
    color: #D97706;
    font-weight: 500;
}

.schedule-legend {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 0.25rem;
}

/* Contact Form */
.contact-form-section {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    position: relative;
}

/* Contact Info */
.contact-info-section {
    background-color: #F9FAFB;
    padding: 3rem;
    border-radius: 1rem;
}

.contact-info-card {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #EDE9FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    color: #7C3AED;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    line-height: 1.6;
}

.contact-details small {
    color: #6B7280;
    font-size: 0.9rem;
}

/* Opening Hours */
.opening-hours {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.hours-list {
    display: grid;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.day {
    font-weight: 500;
}

.time {
    color: #6B7280;
}

.emergency-contact {
    background-color: #FEF2F2;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #FECACA;
    margin-top: 2rem;
}

.emergency-contact h3 {
    color: #DC2626;
    margin-bottom: 0.5rem;
}

.emergency-contact p {
    color: #991B1B;
    margin: 0;
}

/* Location */
.location-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-container {
    background-color: #F3F4F6;
    border-radius: 0.5rem;
    overflow: hidden;
}

.location-info h3 {
    color: #7C3AED;
    margin-bottom: 1.5rem;
}

.directions {
    display: grid;
    gap: 1.5rem;
}

.direction-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.direction-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #EDE9FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direction-item h4 {
    color: #7C3AED;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.direction-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: #FFFFFF;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F9FAFB;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #6B7280;
    line-height: 1.6;
}

/* Thanks Page */
.thank-you-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #F3E8FF 0%, #E0E7FF 100%);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-message {
    margin: 3rem 0;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #7C3AED;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #7C3AED;
    margin-bottom: 0.5rem;
}

.thank-you-actions {
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-follow {
    margin-top: 3rem;
}

.social-follow h3 {
    color: #7C3AED;
    margin-bottom: 0.5rem;
}

.social-follow p {
    color: #6B7280;
    margin-bottom: 1rem;
}

.social-follow .social-links {
    justify-content: center;
}

.social-follow .social-links a {
    color: #7C3AED;
}

.contact-hours {
    color: #6B7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-intro {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #F3E8FF;
    border-radius: 0.5rem;
    border-left: 4px solid #7C3AED;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #7C3AED;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #374151;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.definitions {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.definition-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.definition-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background-color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.right-item h4 {
    color: #7C3AED;
    margin-bottom: 0.5rem;
}

.authority-contact {
    background-color: #F3F4F6;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #D1D5DB;
    margin-top: 1rem;
}

.contact-details {
    background-color: #F3E8FF;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #C4B5FD;
}

/* Cookie Policy Specific */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background-color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.cookie-type h4 {
    color: #7C3AED;
    margin-bottom: 0.5rem;
}

.cookie-table {
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    margin: 1rem 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #F3F4F6;
    align-items: center;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-name {
    font-family: 'Courier New', monospace;
    background-color: #F3F4F6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.cookie-purpose {
    font-size: 0.95rem;
}

.cookie-duration {
    font-weight: 600;
    color: #7C3AED;
    text-align: center;
}

.preference-actions {
    margin: 2rem 0;
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text h3 {
    color: #7C3AED;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    color: #6B7280;
    font-size: 0.95rem;
}

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

.cookie-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Progress/Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    margin-bottom: 1.5rem;
}

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

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

/* Success Stories */
.success-story-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.story-avatar {
    flex-shrink: 0;
}

.story-info h3 {
    color: #7C3AED;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.story-condition {
    color: #6B7280;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.story-content h4 {
    color: #374151;
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.story-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.story-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #F3F4F6;
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
}

.benefit-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-top: 1rem;
}

/* Awards */
.award-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-icon {
    margin-bottom: 1.5rem;
}

.award-card h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
}

/* Timeline */
.future-goals {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #7C3AED;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: #7C3AED;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 3px #7C3AED;
}

.timeline-content {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.timeline-content h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
}

/* Team Philosophy */
.philosophy-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-icon {
    margin-bottom: 1.5rem;
}

.philosophy-card h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
}

/* Credentials */
.credential-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-5px);
}

.credential-icon {
    margin-bottom: 1.5rem;
}

.credential-card h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
}

/* About Page Specific */
.story-graphic {
    text-align: center;
}

.feature-list {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-graphic {
    text-align: center;
}

.value-card {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #7C3AED;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.value-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #6B7280;
}

.location-details {
    margin: 1.5rem 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-map {
    text-align: center;
    background-color: #F3F4F6;
    padding: 2rem;
    border-radius: 0.5rem;
}

/* Team Availability */
.availability-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.availability-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.availability-card h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
}

.availability-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.availability-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.availability-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Tracking */
.tracking-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.tracking-icon {
    margin-bottom: 1.5rem;
}

.tracking-card h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
}

.tracking-card ul {
    list-style: none;
    margin-top: 1rem;
}

.tracking-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tracking-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7C3AED;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .location-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .availability-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .story-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 100px repeat(7, 80px);
    }
    
    .schedule-cell {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .package-price .price {
        font-size: 2rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .nav-toggle,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .card,
    .service-card,
    .team-card {
        box-shadow: none;
        border: 1px solid #E5E7EB;
    }
    
    a {
        color: inherit;
        text-decoration: none;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.8rem;
        color: #6B7280;
    }
}

/* Focus and Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #7C3AED;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card,
    .service-card,
    .team-card,
    .testimonial-card {
        border-width: 2px;
    }
    
    .btn {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .card:hover,
    .service-card:hover,
    .team-card:hover,
    .btn:hover {
        transform: none;
    }
}
