 /* Modern CSS Reset */
        :root {
            --primary: #F39C12;
            --primary-light: #FDEBD0;
            --primary-dark: #E67E22;
            --secondary: #27AE60;
            --secondary-light: #D5F5E3;
            --secondary-dark: #229954;
            --accent: #2980B9;
            --accent-light: #D6EAF8;
            --accent-dark: #2471A3;
            --light: #FDFEFE;
            --dark: #2C3E50;
            --dark-light: #566573;
            --neutral: #EDBB99;
            --neutral-light: #FDEBD0;
            --neutral-dark: #DC7633;
            --gray-100: #F8F9F9;
            --gray-200: #EBEDEF;
            --gray-300: #D5D8DC;
            --gray-400: #A6ACAF;
            --gray-500: #85929E;
            --gray-600: #707B7C;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.7;
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Merriweather', serif;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--dark);
            line-height: 1.3;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.8rem; }
        h3 { font-size: 2.2rem; }
        h4 { font-size: 1.8rem; }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--dark-light);
        }

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

        a:hover {
            color: var(--primary-dark);
        }

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

        section {
            padding: 100px 0;
        }

        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
            gap: 8px;
            border: none;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .btn:hover:before {
            width: 100%;
        }

        .btn-primary {
            background-color: var(--accent);
            color: white;
            border: 2px solid var(--accent);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background-color: var(--accent-dark);
            border-color: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background-color: var(--primary);
            color: white;
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

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

        .btn-outline:hover {
            background-color: var(--accent);
            color: white;
        }

        /* Header Styles */
        .top-bar {
            background-color: var(--dark);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
            position: relative;
            z-index: 1001;
        }

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

        .top-contact span {
            margin-right: 25px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .top-contact i {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            font-size: 1.1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .social-links a:hover {
            color: var(--primary);
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }

        header {
            position: sticky;
            top: 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-md);
            z-index: 1000;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

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

        .logo h1 {
            font-size: 2.2rem;
            margin: 0;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 10px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            padding: 12px 18px;
            border-radius: 6px;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
            background: var(--gray-100);
        }

        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 70%;
        }

        .donate-btn {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
            background: none;
            border: none;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/community.jpg') center center/cover no-repeat;
            padding: 180px 0 100px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(243, 156, 18, 0.3), rgba(39, 174, 96, 0.3));
            z-index: 0;
        }

        .page-header .container {
            position: relative;
            z-index: 1;
        }

        .page-header h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            color: white;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1s ease;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            animation: fadeInUp 1s ease;
            flex-wrap: wrap;
        }

        .breadcrumb-item {
            margin: 0 8px;
            font-size: 1.1rem;
        }

        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }

        .breadcrumb-item a:hover {
            color: white;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
            color: white;
            margin-right: 15px;
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 800px;
            margin: 30px auto 0;
            line-height: 1.8;
        }

        /* Programs Grid */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .program-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid var(--gray-200);
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }

        .program-icon {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .program-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }

        .program-card:hover .program-icon::before {
            transform: rotate(45deg) translate(20px, 20px);
        }

        .program-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .program-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-bottom: 15px;
        }

        .program-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .program-content p {
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .program-stats {
            background-color: var(--gray-100);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .program-stats h6 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .program-stats ul {
            padding-left: 20px;
            margin-bottom: 0;
        }

        .program-stats li {
            margin-bottom: 8px;
            font-size: 0.95rem;
            color: var(--dark-light);
        }

        .program-status {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .status-completed {
            background-color: var(--secondary-light);
            color: var(--secondary-dark);
        }

        .status-ongoing {
            background-color: var(--primary-light);
            color: var(--primary-dark);
        }

        .status-future {
            background-color: var(--accent-light);
            color: var(--accent-dark);
        }

        /* Goal Meter Styles */
        .goal-meter {
            margin: 20px 0;
        }

        .goal-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--gray-600);
        }

        .meter-container {
            height: 10px;
            background-color: var(--gray-200);
            border-radius: 5px;
            overflow: hidden;
        }

        .meter-fill {
            height: 100%;
            border-radius: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transition: width 1s ease-in-out;
        }

        .program-donate-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            background-color: var(--accent);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
            margin-top: 15px;
            border: 2px solid var(--accent);
            width: 100%;
        }

        .program-donate-btn:hover {
            background-color: var(--accent-dark);
            border-color: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.1"><circle cx="50" cy="50" r="40" stroke="white" fill="none" /></svg>');
            background-size: 200px;
        }

        .cta-section h2 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: white;
        }

        .cta-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            color: rgba(255,255,255,0.9);
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .cta-btn {
            background-color: white;
            color: var(--primary);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--primary);
            transition: width 0.4s ease;
            z-index: -1;
        }

        .cta-btn:hover {
            color: white;
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .cta-btn:hover::before {
            width: 100%;
        }

        /* Footer Styles */
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 100px 0 0;
            position: relative;
        }

        .footer:before {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 200px;
            background: var(--dark);
            transform: skewY(-3deg);
            z-index: -1;
        }

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

        .footer-col h3 {
            color: white;
            margin-bottom: 30px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-col p {
            margin-bottom: 25px;
            line-height: 1.8;
            color: rgba(255,255,255,0.7);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            position: relative;
            padding-left: 20px;
        }

        .footer-links a:before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            transition: transform 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 30px;
        }

        .footer-links a:hover:before {
            transform: translateX(5px);
        }

        .footer-contact li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact i {
            margin-right: 15px;
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 25px;
            position: relative;
            border-radius: 50px;
            overflow: hidden;
            background: rgba(255,255,255,0.1);
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            background: transparent;
            outline: none;
            font-family: 'Inter', sans-serif;
            color: white;
        }

        .newsletter-input::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .newsletter-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-btn:hover {
            background: var(--primary-dark);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding: 30px 0;
            margin-top: 70px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255,255,255,0.6);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                max-width: 1140px;
            }
            
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .container {
                max-width: 960px;
            }

            .section-title h2 {
                font-size: 2.5rem;
            }

            .page-header h1 {
                font-size: 3.2rem;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                padding-top: 100px;
                transition: right 0.4s ease;
                z-index: 1000;
                gap: 0;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 15px 0;
                text-align: center;
                width: 100%;
            }

            .nav-links a {
                color: white;
                font-size: 1.3rem;
                padding: 15px 0;
                width: 100%;
                display: block;
            }

            .mobile-menu-btn {
                display: block;
                z-index: 1001;
            }
        }

        @media (max-width: 768px) {
            .container {
                max-width: 720px;
            }

            .section {
            padding: 80px 0;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .page-header h1 {
                font-size: 2.8rem;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .cta-section h2 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .top-bar .container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 576px) {
            .container {
                max-width: 540px;
                padding: 0 15px;
            }

            .section {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .page-header {
                padding: 120px 0 80px;
            }

            .page-header h1 {
                font-size: 2.2rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .cta-section p {
                font-size: 1.1rem;
            }
        }
        /* Programs Page Specific Styles */
.donation-ticker {
    background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.ticker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ticker-header h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.ticker-header h3 i {
    margin-right: 8px;
    color: #ff6b6b;
}

.live-badge {
    background: #e74c3c;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.ticker-content {
    position: relative;
    height: 30px;
    overflow: hidden;
}

.ticker-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticker-item.active {
    opacity: 1;
}

.donor-name {
    font-weight: 600;
}

.donation-amount {
    color: #f1c40f;
    font-weight: bold;
}

.program-name {
    color: #1abc9c;
    font-weight: 500;
}

.donation-time {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Program Stats Summary */
.program-stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: #f3f7f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: #3498db;
}

.stat-content h3 {
    margin: 0 0 5px 0;
    font-size: 28px;
    color: #2c3e50;
}

.stat-content p {
    margin: 0;
    color: #7f8c8d;
    font-size: 14px;
}

/* Donation Progress */
.donation-progress {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.progress-percentage {
    font-weight: bold;
    font-size: 1.2rem;
    color: #27ae60;
}

.progress-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db 0%, #2ecc71 100%);
    border-radius: 5px;
    transition: width 1s ease-in-out;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.time-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.time-stats .stat {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.85rem;
}

.time-stats .stat i {
    margin-right: 8px;
    color: #3498db;
}

/* Recent Donors */
.recent-donors {
    margin: 20px 0;
}

.recent-donors h5 {
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 1rem;
}

.donor-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.donor {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.donor img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
}

.donor span {
    font-size: 0.85rem;
}

/* Countdown Timer */
.countdown {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.countdown h5 {
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    background: #fff4f4;
    padding: 10px;
    border-radius: 5px;
    min-width: 50px;
}

.countdown-label {
    font-size: 0.7rem;
    margin-top: 5px;
    color: #7f8c8d;
    text-transform: uppercase;
}

/* Early Support Form */
.early-support {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.early-support h5 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.early-support p {
    margin: 0 0 15px 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.early-support-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.early-support-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.early-support-form button {
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.early-support-form button:hover {
    background: #2980b9;
}

/* Supporters Section */
.supporters-section {
    background: #f8f9fa;
}

.supporters-tabs {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-button {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: #3498db;
    border-bottom: 3px solid #3498db;
}

.tab-button:hover {
    background: #f8f9fa;
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.supporter-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

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

.supporter-image {
    position: relative;
    margin: 0 auto 15px;
    width: 80px;
}

.supporter-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.supporter-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f1c40f;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.supporter-info h4 {
    margin: 0 0 8px 0;
    color: #2c3e50;
}

.supporter-amount {
    margin: 0 0 5px 0;
    color: #27ae60;
    font-weight: 500;
}

.supporter-programs {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .program-stats-summary {
        grid-template-columns: 1fr;
    }
    
    .progress-details {
        flex-direction: column;
        gap: 5px;
    }
    
    .time-stats {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-number {
        font-size: 1.4rem;
        min-width: 40px;
    }
    
    .early-support-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .early-support-form input,
    .early-support-form button {
        border-radius: 4px;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .supporters-grid {
        grid-template-columns: 1fr;
    }
}