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

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

header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.donate-btn {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
}

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

.features {
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.sponsors-section {
    background: white;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.sponsor-year {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.sponsor-year h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sponsor-year ul {
    list-style: none;
}

.sponsor-year li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.stats-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #f39c12;
}

.stat-description {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.goals-section {
    background: #f8f9fa;
}

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

.goal-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #1e3c72;
}

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

.quotes-section {
    background: white;
}

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

.quote-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.quote-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.quote-card blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.quote-card cite {
    color: #1e3c72;
    font-weight: bold;
}

.letters-section {
    background: #f8f9fa;
}

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

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

.letter-card blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.letter-card cite {
    color: #1e3c72;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.letter-card a {
    color: #f39c12;
    text-decoration: none;
}

.board-section {
    background: white;
}

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

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

.board-card h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.board-card p {
    color: #666;
    font-size: 0.95rem;
}

.faq-section {
    background: #f8f9fa;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #555;
}

.signup-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.signup-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.signup-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.signup-form button {
    width: 100%;
    padding: 1rem;
    background: #f39c12;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.signup-form button:hover {
    background: #e67e22;
}

footer {
    background: #1e3c72;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
}

.footer-section a {
    color: #f39c12;
    text-decoration: none;
}

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

.certification-badge {
    display: block;
    margin: 1rem 0;
}

.certification-badge img {
    width: 100px;
}

.page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

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

.content-section {
    padding: 3rem 0;
}

.raffle-prizes {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.prize-category {
    margin-bottom: 2rem;
}

.prize-category h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.prize-category ul {
    list-style: none;
}

.prize-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.rules-list {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.rules-list ol {
    margin-left: 1.5rem;
}

.rules-list li {
    margin-bottom: 1rem;
    color: #555;
}

.program-details {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.program-details h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.program-details ul {
    margin-left: 1.5rem;
}

.program-details li {
    margin-bottom: 0.5rem;
    color: #555;
}

.registration-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    background: #1e3c72;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2a5298;
}

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

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.maps-section {
    margin: 3rem 0;
}

.map-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.map-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.map-item h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

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

.problem, .solution {
    padding: 1.5rem;
    border-radius: 8px;
}

.problem {
    background: #fff3cd;
}

.solution {
    background: #d4edda;
}

.problem h4, .solution h4 {
    margin-bottom: 0.5rem;
    color: #1e3c72;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

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

    .problem-solution {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

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