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

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

/* Navbar Styles */
.navbar {
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #dc3545 !important;
}

.btn-help {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.btn-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

/* Page Header */
.page-header-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0 3rem;
    margin-top: -80px;
    padding-top: 6rem;
}

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

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

.page-stats {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc3545;
}

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

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc3545;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #dc3545;
}

/* Activities Section */
.activities-section {
    background: white;
}

.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.activity-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-content {
    padding: 2rem;
}

.activity-icon {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.activity-content h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.activity-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.activity-list {
    list-style: none;
    padding: 0;
}

.activity-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.activity-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Programs Section */
.programs-section {
    background: #f8f9fa;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: #dc3545;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15);
}

.program-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.program-card h5 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.program-stats {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.program-stats .stat {
    font-weight: bold;
    color: #dc3545;
    font-size: 1.1rem;
}

/* Regional Section */
.regional-section {
    background: white;
}

.regional-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.map-overlay h4 {
    margin-bottom: 0.5rem;
}

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

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

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

.stat-icon {
    font-size: 2rem;
    color: #dc3545;
    margin-right: 1rem;
    width: 60px;
    text-align: center;
}

.stat-info .stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.stat-info .stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
}

.cta-buttons .btn {
    margin: 0.5rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #1a1a1a !important;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #dc3545;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #dc3545;
    width: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .page-header-section {
        padding-top: 5rem;
        text-align: center;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.2rem 0;
    }
    
    .btn-help {
        margin-top: 1rem;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .activity-content,
    .program-card {
        padding: 1.5rem;
    }
    
    .activity-image {
        height: 200px;
    }
    
    .regional-stats {
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
        width: 50px;
    }
    
    .stat-info .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .activity-icon,
    .program-icon {
        font-size: 2rem;
    }
    
    .map-overlay {
        padding: 1rem;
    }
    
    .map-overlay h4 {
        font-size: 1.2rem;
    }
}