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

/* Images never overflow their container (mobile overflow safety net) */
img {
    max-width: 100%;
    height: auto;
}

/*
  Design tokens (CSS variables)
  Centralize frequently-used values to avoid hardcoded repetition.
  If you need to change branding (colors, radii, shadows) do it here.
*/
:root {
    /* Brand */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;

    /* Neutral palette */
    --color-text: #333;
    --color-heading: #1a1a1a;
    --color-muted: #666;
    --color-muted-2: #4b5563;
    --color-surface: #ffffff;
    --color-surface-muted: #f8fafc;
    --color-surface-muted-2: #f1f5f9;

    /* Borders / shadows */
    --border-subtle: 1px solid rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 20px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);

    /* Motion */
    --transition-fast: 0.3s ease;
    --transition-reveal: 0.6s ease;
    --transition-hero: 0.8s ease;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 20px;

    /* Layers */
    --z-navbar: 1000;
    --z-notification: 10000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-surface);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--color-muted);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: var(--z-navbar);
    padding: 1rem 0;
    transition: all var(--transition-fast);
    border-bottom: var(--border-subtle);
}

/* Applied by JS on scroll (`CONFIG.nav.scrolledClass`) */
.navbar.navbar--scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-heading);
    margin: 0;
}

.nav-logo-image {
    display: block;
    width: auto;
    height: 58px;
    max-width: 100%;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.cta-button {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.nav-link.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-surface-muted) 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--color-muted);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-heading);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--color-muted-2);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-surface-muted-2);
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
}

.about-description p {
    margin-bottom: 1.5rem;
    color: var(--color-muted-2);
    line-height: 1.7;
}

.credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.credential-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.credential-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
}

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

.service-number {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.4rem;
}

.service-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

/* Community Impact Section */
.community {
    padding: 80px 0;
    background: white;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

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

.stat-item p {
    color: #4b5563;
    font-weight: 500;
}

.charity-events {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.charity-events h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.event-item {
    padding: 2rem;
    background: #f1f5f9;
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}

.event-item h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.event-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-weight: 600;
}

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

/* Partners Section */
.partners {
    padding: 80px 0;
    background: white;
}

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

.partner-category {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    text-align: center;
}

.partner-category h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partner-category p {
    color: #4b5563;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

/* Merch */
.merch-cta {
    padding: 80px 0;
    background: white;
}

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

.merch {
    padding: 80px 0;
    background: #f8fafc;
}

.merch-embed {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
}

.merch-embed__title {
    text-align: center;
    color: var(--color-heading);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.merch-embed__note {
    text-align: center;
    color: var(--color-muted-2);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.merch-help {
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border-left: 4px solid var(--color-primary);
}

.merch-help h3 {
    color: var(--color-heading);
    margin-bottom: 1rem;
    text-align: center;
}

.merch-help ol {
    color: var(--color-muted-2);
    line-height: 1.8;
    padding-left: 1.25rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--color-primary);
    font-weight: 500;
}

.philosophy {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}

.philosophy h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.philosophy p {
    color: #4b5563;
    line-height: 1.6;
}

/* Booking Form */
.booking-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

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

/* Form focus label effect (JS toggles `.focused` on `.form-group`) */
.form-group.focused label {
    color: var(--color-primary);
    transform: translateY(-2px);
    transition: all var(--transition-fast);
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-main {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .merch-embed {
        padding: 1.5rem;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-main {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .service-card,
    .testimonial-card,
    .booking-form {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-list {
        grid-template-columns: 1fr;
    }
}

/* Smooth animations */
/*
  Reveal animations (driven by JS + IntersectionObserver)
  - `.js` class is added to `<html>` in `assets/js/script.js`
  - elements start hidden only when JS is enabled
  - `.is-revealed` is applied when the element enters the viewport
*/
.js .service-card,
.js .testimonial-card,
.js .stat-item,
.js .event-item,
.js .credential-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.js .service-card.is-revealed,
.js .testimonial-card.is-revealed,
.js .stat-item.is-revealed,
.js .event-item.is-revealed,
.js .credential-item.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero intro animation uses `.is-reveal-hidden` + `.is-revealed` */
.js .is-reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-hero), transform var(--transition-hero);
}

.js .is-reveal-hidden.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll behavior improvements */
section {
    scroll-margin-top: 80px;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Hamburger active state (JS toggles `.active`) */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Notifications (created by JS, styled here) */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: var(--z-notification);
    transform: translateX(100%);
    transition: transform var(--transition-fast);
    font-family: 'Inter', sans-serif;
    color: white;
}

.notification.is-visible {
    transform: translateX(0);
}

.notification--success {
    background: #10b981;
}

.notification--error {
    background: #ef4444;
}

.notification--info {
    background: #3b82f6;
}

.notification__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification__message {
    flex: 1;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

/* Additional Page Styles */

/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Navigation Active State */
.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

/* About Page Styles */
.about-detailed {
    padding: 80px 0;
    background: white;
}

.about-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

.main-image {
    position: relative;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.certificate-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.biography-section,
.mission-section,
.message-section {
    margin-bottom: 4rem;
}

.bio-question {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.bio-content p,
.mission-content p,
.message-content p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.mission-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-primary);
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-surface-muted-2);
    border-radius: 12px;
}

.message-subtitle {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.final-message {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 20px;
    margin-top: 4rem;
}

.about-cta h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.about-cta p {
    color: #4b5563;
    margin-bottom: 2rem;
}

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

/* Services Page Styles */
.westchester-section {
    padding: 60px 0;
    background: #f8fafc;
}

.westchester-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.westchester-content h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.westchester-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.swift-note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

.westchester-image img {
    max-width: 150px;
    height: auto;
    border-radius: 12px;
}

.services-detailed {
    padding: 80px 0;
    background: white;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-detailed {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.duration {
    color: #666;
    font-size: 0.9rem;
}

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

.service-info p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Package Deals */
.packages-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.package-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.package-card.featured {
    border: 3px solid var(--color-primary);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-card h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.package-price .price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.package-price .savings {
    background: #10b981;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pro-tip {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-style: italic;
}

.validity {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: white;
}

.booking-description {
    text-align: center;
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.booking-method {
    text-align: center;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.booking-method:hover {
    border-color: var(--color-primary);
}

.booking-method h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.booking-method p {
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .westchester-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .service-card-detailed,
    .package-card,
    .booking-method {
        padding: 1.5rem;
    }
    
    .package-price .price {
        font-size: 2rem;
    }
}

/* Events Page Styles */
.events-hero-image {
    padding: 40px 0;
    background: white;
}

.events-hero-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.events-section {
    padding: 80px 0;
    background: #f8fafc;
}

.events-grid {
    display: grid;
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.featured-event {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    align-items: stretch;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.event-content {
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
}

.event-date {
    text-align: center;
    background: var(--color-primary);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    min-width: 80px;
    height: fit-content;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.event-date .year {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.event-details {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.event-time, .event-location {
    margin-bottom: 1rem;
}

.event-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.event-highlights h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.event-highlights ul {
    list-style: none;
    padding: 0;
}

.event-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.event-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.social-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.social-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

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

.past-events {
    padding: 80px 0;
    background: white;
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.past-event-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}

.past-event-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.past-event-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: var(--color-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.event-cta {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.event-cta .cta-content h2 {
    margin-bottom: 1rem;
}

.event-cta .cta-content p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Articles Page Styles */
.articles-hero-image {
    padding: 40px 0;
    background: white;
}

.articles-hero-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.articles-section {
    padding: 80px 0;
    background: #f8fafc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.featured-article {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-date {
    color: #666;
}

.article-category {
    background: var(--color-primary);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-weight: 500;
}

.article-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-highlights {
    margin-bottom: 2rem;
}

.article-highlights h4 {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.article-highlights ul {
    list-style: none;
    padding: 0;
}

.article-highlights li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: #4b5563;
    font-size: 0.9rem;
}

.article-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.article-categories {
    padding: 80px 0;
    background: white;
}

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

.category-card {
    text-align: center;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.category-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.topic {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.newsletter-section {
    padding: 80px 0;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

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

.form-group-inline {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-group-inline input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.featured-quote {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.featured-quote blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-style: italic;
    color: #4b5563;
    line-height: 1.7;
}

.featured-quote cite {
    display: block;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    font-style: normal;
}

.articles-cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

/* Donate Page Styles */
.donation-mission {
    padding: 80px 0;
    background: white;
}

.mission-description {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.donation-causes {
    padding: 80px 0;
    background: #f8fafc;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.cause-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.featured-cause {
    border: 3px solid var(--color-primary);
    transform: scale(1.02);
}

.cause-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cause-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cause-impact {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #374151;
}

.donation-options {
    padding: 80px 0;
    background: white;
}

.donation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.donation-method {
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.donation-method:hover {
    border-color: var(--color-primary);
}

.donation-method h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.donation-method p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.donation-amounts {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.amount-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.sponsor-benefits ul {
    text-align: left;
    color: #4b5563;
}

.success-stories {
    padding: 80px 0;
    background: #f8fafc;
}

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

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.story-card p {
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.story-author {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.transparency {
    padding: 80px 0;
    background: white;
}

.transparency-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.transparency-text ul {
    margin-bottom: 2rem;
    color: #4b5563;
}

.transparency-text li {
    margin-bottom: 0.5rem;
}

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

.transparency-stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
}

.transparency-stat h4 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.transparency-stat p {
    color: #4b5563;
    font-size: 0.9rem;
}

.donate-cta {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.cta-note {
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.cta-note a {
    color: var(--color-primary);
    text-decoration: none;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* Accessibility Page Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

.accessibility-commitment {
    padding: 80px 0;
    background: white;
}

.commitment-intro {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.principle-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.principle-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.principle-card p {
    color: #4b5563;
    line-height: 1.6;
}

.web-accessibility {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-category h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.feature-category ul {
    list-style: none;
    padding: 0;
}

.feature-category li {
    padding: 0.5rem 0;
    color: #4b5563;
    line-height: 1.6;
}

.feature-category strong {
    color: var(--color-primary);
}

.service-accessibility {
    padding: 80px 0;
    background: white;
}

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

.adaptation-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}

.adaptation-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.adaptation-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.adaptation-card ul {
    color: #4b5563;
}

.adaptation-card li {
    margin-bottom: 0.5rem;
}

.standards-compliance {
    padding: 80px 0;
    background: #f8fafc;
}

.compliance-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.compliance-text h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.compliance-text p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.principle {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.principle h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.principle p {
    color: #4b5563;
    font-size: 0.9rem;
    margin: 0;
}

.compliance-status {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compliance-status h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.status-item:last-child {
    border-bottom: none;
}

.status-label {
    color: #4b5563;
    font-weight: 500;
}

.status-value {
    color: var(--color-primary);
    font-weight: 600;
}

.assistive-technology {
    padding: 80px 0;
    background: white;
}

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

.tech-category {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    text-align: center;
}

.tech-category h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tech-category ul {
    list-style: none;
    padding: 0;
}

.tech-category li {
    padding: 0.3rem 0;
    color: #4b5563;
}

.accessibility-feedback {
    padding: 80px 0;
    background: #f8fafc;
}

.feedback-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.feedback-text h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feedback-text p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.contact-method h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #4b5563;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

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

.feedback-text ul {
    color: #4b5563;
}

.feedback-text li {
    margin-bottom: 0.5rem;
}

.response-commitment {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.response-commitment h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.timeline-time {
    background: var(--color-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.timeline-action {
    color: #4b5563;
    font-size: 0.9rem;
}

.accessibility-resources {
    padding: 80px 0;
    background: white;
}

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

.resource-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}

.resource-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    margin-bottom: 0.5rem;
}

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

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

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .featured-event {
        grid-template-columns: 1fr;
    }
    
    .event-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-date {
        align-self: flex-start;
        min-width: 60px;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .form-group-inline {
        flex-direction: column;
    }
    
    .transparency-content,
    .compliance-info,
    .feedback-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .articles-grid,
    .categories-grid,
    .causes-grid,
    .donation-methods,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-cause {
        transform: none;
    }
}

@media (max-width: 480px) {
    .event-card,
    .article-card,
    .cause-card,
    .donation-method {
        padding: 1.5rem;
    }
    
    .featured-quote blockquote {
        font-size: 1.1rem;
    }
    
    .donation-amounts {
        justify-content: center;
    }
    
    .amount-btn {
        flex: 1;
        min-width: 60px;
    }
}
