/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.nav {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c59d5f;
    letter-spacing: 1px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #c59d5f;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 1rem 0;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 20px;
    color: #e0e0e0;
    transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c59d5f;
    background: rgba(197, 157, 95, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: #c59d5f;
    color: #ffffff;
}

.btn-primary:hover {
    background: #b08850;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #c59d5f;
    border-color: #c59d5f;
}

.btn-secondary:hover {
    background: #c59d5f;
    color: #ffffff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #c59d5f;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #c59d5f;
}

.page-hero .lead {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 60px 20px;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #555;
}

/* Intro Section */
.intro-section {
    background: #f8f9fa;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    background: #ffffff;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Stats Section */
.stats-section {
    background: #2c3e50;
    color: #ffffff;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c59d5f;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #c59d5f;
    border-radius: 5px;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
    color: #c59d5f;
}

/* Testimonials */
.testimonials-section {
    background: #ffffff;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #c59d5f;
}

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

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #c59d5f;
}

/* Process Steps */
.process-section {
    background: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #c59d5f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Audience Grid */
.audience-section {
    background: #ffffff;
}

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

.audience-card {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: 0.3s;
}

.audience-card:hover {
    background: #e9ecef;
}

.audience-card h3 {
    color: #c59d5f;
    margin-bottom: 0.75rem;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    color: #c59d5f;
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #c59d5f;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-simple {
    background: #f8f9fa;
    text-align: center;
}

/* Story Section */
.story-section {
    background: #ffffff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Mission Grid */
.mission-section {
    background: #f8f9fa;
}

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

.mission-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mission-card h3 {
    color: #c59d5f;
    margin-bottom: 1rem;
}

/* Team Grid */
.team-section {
    background: #ffffff;
}

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

.team-member {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.team-member .role {
    color: #c59d5f;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

/* Timeline */
.achievements-section {
    background: #f8f9fa;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c59d5f;
    min-width: 80px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Technical Grid */
.technical-section {
    background: #ffffff;
}

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

.tech-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.tech-item h3 {
    color: #c59d5f;
    margin-bottom: 0.75rem;
}

/* Approach Section */
.approach-section {
    background: #f8f9fa;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1.5rem;
}

.approach-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Community Section */
.community-section {
    background: #ffffff;
}

.community-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.community-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.community-item h3 {
    color: #c59d5f;
    margin-bottom: 0.75rem;
}

/* Trust Section */
.trust-section {
    background: #f8f9fa;
}

.partners-content {
    max-width: 800px;
    margin: 0 auto;
}

.partners-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partners-list li {
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-left: 3px solid #c59d5f;
    border-radius: 4px;
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

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

.pricing-card.featured {
    border: 3px solid #c59d5f;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-header h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c59d5f;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.pricing-features li::before {
    content: "✓ ";
    color: #c59d5f;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Services Grid */
.special-screenings-section {
    background: #ffffff;
}

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

.service-card {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #c59d5f;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.service-price {
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #c59d5f;
}

/* Program List */
.current-program-section {
    background: #f8f9fa;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.program-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.program-desc {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.program-lang {
    font-size: 0.9rem;
    color: #c59d5f;
    font-weight: 600;
}

.program-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c59d5f;
    text-align: center;
}

/* Coming Soon */
.coming-soon-section {
    background: #ffffff;
}

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

.coming-card {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.coming-card h3 {
    color: #c59d5f;
    margin-bottom: 0.75rem;
}

/* Benefits Service */
.benefits-service-section {
    background: #f8f9fa;
}

.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-block {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-block h3 {
    color: #c59d5f;
    margin-bottom: 1rem;
}

/* Booking Process */
.booking-process-section {
    background: #ffffff;
}

/* Contact Section */
.contact-info-section {
    background: #f8f9fa;
}

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

.contact-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #c59d5f;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #2c3e50;
    transition: 0.3s;
}

.contact-card a:hover {
    color: #c59d5f;
}

/* About Location */
.about-location-section {
    background: #ffffff;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Directions */
.directions-section {
    background: #f8f9fa;
}

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

.direction-card {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
}

.direction-card h3 {
    color: #c59d5f;
    margin-bottom: 1rem;
}

/* Company Info */
.company-info-section {
    background: #ffffff;
}

.company-details {
    max-width: 700px;
    margin: 0 auto;
}

.company-details p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Contact Reasons */
.contact-reasons-section {
    background: #f8f9fa;
}

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

.reason-item {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
}

.reason-item h3 {
    color: #c59d5f;
    margin-bottom: 0.75rem;
}

/* Thank You Section */
.thank-you-section {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.thank-you-content h1 {
    color: #c59d5f;
    margin-bottom: 1rem;
}

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

/* Next Steps */
.next-steps-section {
    background: #ffffff;
}

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

.step-card {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-card h3 {
    color: #c59d5f;
    margin-bottom: 1rem;
}

.step-card a {
    color: #2c3e50;
    font-weight: 600;
    transition: 0.3s;
}

.step-card a:hover {
    color: #c59d5f;
}

/* Legal Page */
.legal-page {
    background: #ffffff;
    padding: 60px 20px;
}

.legal-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #c59d5f;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content ul li {
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: #c59d5f;
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Visit CTA */
.visit-cta-section {
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.visit-cta-section h2 {
    color: #c59d5f;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 50px 20px 20px;
}

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

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

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

.footer-col a {
    color: #e0e0e0;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #c59d5f;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    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-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
    }

    .nav-menu li {
        margin-left: 2rem;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

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

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

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

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

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

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

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

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

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

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .tech-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

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

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

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

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

    .coming-card {
        flex: 1;
    }

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

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

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

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

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

    .reason-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

    .step-card {
        flex: 1;
    }

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

    .footer-col {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-direction: row;
        width: auto;
    }

    .cookie-modal-buttons {
        flex-direction: row;
    }

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

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

    .program-price {
        text-align: right;
        min-width: 100px;
    }
}

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

    section {
        padding: 80px 20px;
    }

    section h2 {
        font-size: 2.2rem;
    }

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

    .value-card {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .testimonial {
        flex: 1;
    }

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

    .pricing-card {
        flex: 1;
    }

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

    .contact-card {
        flex: 1;
    }
}