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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

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

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav {
    display: none;
    gap: 30px;
}

.nav a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #3498db;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Card Base Style */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hero Card */
.hero-card {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-card .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content-card {
    text-align: center;
}

.hero-content-card h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Stats Cards */
.stats-cards {
    padding: 60px 0;
    background: #f8f9fa;
}

.stats-cards .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
}

.content-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.link-arrow {
    color: #3498db;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover {
    gap: 10px;
}

.link-arrow::after {
    content: '→';
}

/* Image Break */
.image-break {
    margin: 60px 0;
}

.image-break img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Programs Grid */
.programs-grid {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.program-card.featured {
    border: 3px solid #3498db;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3498db;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-content h3 {
    font-size: 1.6rem;
    color: #2c3e50;
}

.age-range {
    color: #3498db;
    font-weight: 600;
    font-size: 0.9rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 10px;
}

.btn-select {
    background: #3498db;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

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

/* Testimonial Cards */
.testimonial-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-cards h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    padding: 35px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 60px 40px;
}

.cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

/* Approach Cards */
.approach-cards {
    padding: 80px 0;
    background: #fff;
}

.approach-cards h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approach-card {
    text-align: center;
    padding: 40px 30px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.approach-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-card p {
    color: #666;
    line-height: 1.7;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline-card h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 80px 0;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-card > p {
    color: #666;
    margin-bottom: 35px;
}

.enrollment-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

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

.checkbox-group a {
    color: #3498db;
    text-decoration: underline;
}

.btn-submit {
    background: #27ae60;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

/* FAQ Cards */
.faq-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-cards h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card {
    padding: 30px;
}

.faq-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-card p {
    color: #666;
    line-height: 1.7;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.cta-inline p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.sticky-cta-btn {
    display: block;
    background: #27ae60;
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(39, 174, 96, 0.5);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.7;
}

/* Page Hero */
.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Story Section */
.story-section {
    padding: 60px 0;
}

/* Values Cards */
.values-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-cards h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.value-card {
    padding: 35px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 35px;
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.team-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    color: #666;
    line-height: 1.7;
}

/* Approach Detail */
.approach-detail {
    padding: 60px 0;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.impact-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.impact-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.impact-stat {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.impact-card p {
    color: #555;
    line-height: 1.7;
}

/* Community Section */
.community-section {
    padding: 60px 0;
}

/* Programs Detail */
.programs-detail {
    padding: 60px 0;
}

.program-detail-card {
    margin-bottom: 40px;
}

.program-full-card {
    padding: 0;
    overflow: hidden;
}

.featured-program {
    border: 3px solid #3498db;
    position: relative;
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    z-index: 10;
}

.program-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    background: #f8f9fa;
}

.program-header-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.age-badge {
    background: #3498db;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    width: fit-content;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
}

.program-image-full {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.program-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-content {
    padding: 40px;
}

.program-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2c3e50;
}

.program-content h3:first-child {
    margin-top: 0;
}

.program-list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 25px;
}

.program-list li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

.program-content > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.comparison-section > .card > p {
    margin-bottom: 30px;
    color: #666;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comparison-item {
    padding: 25px;
    background: #fff;
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

.comparison-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.comparison-item p {
    margin-bottom: 8px;
    color: #666;
}

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

/* Enrollment CTA */
.enrollment-cta {
    padding: 80px 0;
}

.cta-subtext {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-subtext a {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 25px;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    color: #666;
    line-height: 1.7;
}

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

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 8px;
}

.quick-links-card {
    padding: 30px;
}

.quick-links-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-links a {
    color: #3498db;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #2980b9;
}

.contact-form-area .card {
    padding: 40px;
}

.contact-form-area h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-form-area > .card > p {
    color: #666;
    margin-bottom: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.map-section p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.map-placeholder {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 0;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.selected-program {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-program h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.selected-program p {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background: #f8f9fa;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.contact-reminder {
    margin-top: 30px;
}

.contact-reminder p {
    margin-bottom: 5px;
    color: #666;
}

.contact-reminder a {
    color: #3498db;
}

/* What to Expect */
.what-to-expect {
    padding: 80px 0;
    background: #f8f9fa;
}

.what-to-expect h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.expect-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expect-card {
    padding: 30px;
}

.expect-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.expect-card p {
    color: #666;
    line-height: 1.7;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
}

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

/* Legal Page */
.legal-page {
    padding: 60px 0;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
}

.legal-card h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.updated-date {
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-card h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-card h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-card p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.legal-card ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-card ul li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.7;
}

.legal-card a {
    color: #3498db;
}

.legal-card strong {
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #666;
}

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

    .nav-toggle {
        display: none;
    }

    .hero-card .container {
        flex-direction: row;
        align-items: center;
    }

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

    .hero-visual {
        flex: 1;
    }

    .stats-cards .container {
        flex-direction: row;
    }

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

    .program-card {
        flex: 0 0 calc(50% - 15px);
    }

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

    .testimonial-card {
        flex: 0 0 calc(50% - 12.5px);
    }

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

    .approach-card {
        flex: 0 0 calc(50% - 12.5px);
    }

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

    .faq-card {
        flex: 0 0 calc(50% - 10px);
    }

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

    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }

    .value-card {
        flex: 0 0 calc(50% - 12.5px);
    }

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

    .team-card {
        flex: 1;
    }

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

    .impact-card {
        flex: 1;
    }

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

    .contact-info {
        flex: 0 0 40%;
    }

    .contact-form-area {
        flex: 0 0 55%;
    }

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

    .comparison-item {
        flex: 0 0 calc(50% - 12.5px);
    }

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

    .expect-card {
        flex: 0 0 calc(50% - 12.5px);
    }

    .program-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

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

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content-card h1 {
        font-size: 3rem;
    }

    .program-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .approach-card {
        flex: 0 0 calc(25% - 18.75px);
    }

    .footer-col {
        flex: 0 0 calc(25% - 30px);
    }

    .comparison-item {
        flex: 0 0 calc(33.333% - 16.67px);
    }

    .expect-card {
        flex: 0 0 calc(25% - 18.75px);
    }
}
