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

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

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

/* Header and Navigation */
header {
    background-color: #1a365d;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #5dbdbf;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a7b 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background-color: #5dbdbf;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: #1a365d;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.mission h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mission p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Programs Section */
.programs {
    padding: 4rem 0;
}

.programs h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.program-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
}

/* Featured Program Section */
.featured-program {
    padding: 4rem 0;
    background-color: #f0f9f9;
}

.featured-program h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a365d;
}

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

.featured-text {
    text-align: center;
}

.featured-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    background-color: #1a365d;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

/* Content Section */
.content-section {
    padding: 3rem 0;
}

.content-section h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: #1a365d;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.contact-item h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #1a365d;
    text-decoration: none;
}

.contact-item a:hover {
    color: #5dbdbf;
}

/* Additional Content Sections */
.values-list {
    margin: 1rem 0 2rem 2rem;
}

.values-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

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

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

.program-detail {
    margin: 3rem 0;
}

.program-subtitle {
    font-size: 1.2rem;
    color: #5dbdbf;
    font-weight: bold;
    margin-bottom: 1rem;
}

.program-detail ul {
    margin: 1rem 0 1.5rem 2rem;
}

.program-detail li {
    margin-bottom: 0.5rem;
}

.impact-section {
    background: #f0f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

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

.involvement-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.involvement-section li {
    margin-bottom: 0.5rem;
}

.tax-info {
    background: #fff9e6;
    padding: 1rem;
    border-left: 4px solid #5dbdbf;
    margin: 1.5rem 0;
}

.volunteer-statement {
    font-size: 0.95rem;
    color: #666;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: #f0f9f9;
    border-radius: 8px;
}

.contact-section {
    margin: 2rem 0;
}

.contact-section ul {
    margin: 1rem 0 0 2rem;
}

.contact-section li {
    margin-bottom: 0.8rem;
}

.response-time {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

/* Footer */
footer {
    background-color: #1a365d;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-details {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #5dbdbf;
}

.footer-address {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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