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

:root {
    --primary-color: #059669;
    --secondary-color: #4ade80;
    --accent-color: #22c55e;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafb;
    --bg-white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f9ff 100%);
    font-size: 16px;
}

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

/* Moving Donation Banner */
.donation-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: slideInFromTop 0.8s ease-out;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.donation-btn {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.donation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(100%);
    transition: transform 0.6s ease;
}

.donation-btn:hover::before {
    transform: translateX(0);
    font-family: inherit;
    margin: 0.8rem 0;
}

.donation-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.donation-btn:active {
    transform: translateY(0px);
}

.account-number {
    color: #ff0000;
    font-weight: 700;
    animation: bounce 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes hover {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .donation-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .donation-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
}

/* Header and Navigation */
.header {
    background: #2d7a2d;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    height: 70px;
    background: white;
    padding: 4px 10px;
    border-radius: 8px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 0.8;
    border-bottom-color: #4ade80;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    color: white;
    padding: 6rem 2rem;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero > .hero-content,
.hero > .hero-image {
    flex: 1;
    padding: 0 2rem;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 3px solid #2d7a2d;
    background: white;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background: white;
}

.hero-slider .slide:first-child {
    position: relative;
    opacity: 1;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-slider .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 55, 72, 0.95));
    color: white;
    padding: 2.5rem 1.5rem 1.5rem;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}

.hero-slider .slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
}

.hero-slider .slider-controls button {
    background: rgba(45, 55, 72, 0.9);
    border: 2px solid white;
    color: white;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    pointer-events: all;
    backdrop-filter: blur(5px);
    font-weight: bold;
}

.hero-slider .slider-controls button:hover {
    background: #2d7a2d;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.6);
}

.hero-slider .slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(45, 55, 72, 0.7);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-slider .slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.hero-slider .slider-dots .dot:hover {
    background: rgba(255,255,255,0.9);
    transform: scale(1.2);
    border-color: rgba(255,255,255,0.8);
}

.hero-slider .slider-dots .dot.active {
    background: #4ade80;
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.6);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #2d7a2d;
    color: white;
}

.btn-primary:hover {
    background: #1e5128;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #2d7a2d;
    border-color: #2d7a2d;
}

.btn-secondary:hover {
    background: #f8fafb;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Page Headers */
.page-header {
    background: #4ade80;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Vision and Mission Section */
.vision-mission {
    padding: 4rem 0;
    background: white;
}

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

.vision-card,
.mission-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vision-card h2,
.mission-card h2 {
    color: #1a5490;
    margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #4b5563;
}

/* Introduction Section */
.introduction {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #e8f5e8 100%);
}

.intro-header {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a472a;
    line-height: 1.2;
}

.intro-content-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.intro-text-left,
.intro-text-right {
    flex: 1;
}

.intro-text-left p,
.intro-text-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.intro-action {
    text-align: center;
}

.intro-action .btn {
    margin-top: 0;
}

/* Image Slider Styles */
.intro-slider {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    border: 3px solid #2d7a2d;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 12px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 55, 72, 0.95));
    color: white;
    padding: 2rem 1.2rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 55, 72, 0.9);
    color: white;
    border: 2px solid white;
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    font-weight: bold;
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: #2d7a2d;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.6);
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(45, 55, 72, 0.7);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: rgba(255,255,255,0.9);
    transform: scale(1.2);
    border-color: rgba(255,255,255,0.8);
}

.slider-dots .dot.active {
    background: #4ade80;
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.6);
}

/* First slide visible by default */
.slide:first-child {
    display: block;
}

/* Focus Areas Section */
.focus-areas {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.focus-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 3rem;
    position: relative;
}

.focus-areas h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #059669, #4ade80);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

.focus-subtitle {
    text-align: center;
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: -1.5rem;
}

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

.focus-item {
    text-align: center;
    padding: 0;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #bbf7d0;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.08);
}

.focus-item:hover {
transform: translateY(-8px);
box-shadow: 0 16px 40px rgba(5, 150, 105, 0.18);
border-color: #059669;
}

.focus-image {
width: 100%;
height: 200px;
margin-bottom: 0;
border-radius: 0;
overflow: hidden;
}

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

.focus-item:hover .focus-image img {
transform: scale(1.08);
}

.focus-item h3 {
    color: #059669;
    margin: 1.2rem 1.5rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.focus-item p {
    color: #4b5563;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c7a2c 0%, #1a5490 100%);
    color: white;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: #f8fafb;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c7a2c 0%, #1a5490 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #60a5fa, #4ade80);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.footer-section {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.footer-section:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #4ade80;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    color: #60a5fa;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ade80;
    transition: width 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-section a:hover::after {
    width: 100%;
}

/* Email and Phone Link Styling */
.email-link, .phone-link {
    color: #60a5fa !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.email-link:hover, .phone-link:hover {
    color: #4ade80 !important;
    transform: translateX(3px);
}

.email-link::after, .phone-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4ade80;
    transition: width 0.3s ease;
}

.email-link:hover::after, .phone-link:hover::after {
    width: 100%;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #4ade80;
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: #4ade80;
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #4ade80 0%, #60a5fa 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #4ade80;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a5490;
        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;
    }

    .nav-toggle {
        display: flex;
    }

    .intro-content-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .intro-header h2 {
        font-size: 2rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1rem;
        min-height: unset;
    }

    .hero > .hero-content,
    .hero > .hero-image {
        padding: 0 1rem;
        width: 100%;
    }

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

    .hero-content {
        margin-bottom: 2rem;
    }

    .hero-image {
        display: block;
        width: 100%;
    }

    .hero-slider {
        max-width: 100%;
        width: 100%;
        height: 300px;
        margin: 0 auto;
        display: block;
    }

    .hero-slider .slide img {
        border-radius: 8px;
    }

    .hero-slider .slide-caption {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .hero-slider .slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .hero-slider .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .intro-text h2 {
        font-size: 2rem;
    }

    /* Mobile Slider Styles */
    .slider-container {
        height: 300px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slide-caption {
        font-size: 0.9rem;
        padding: 1.5rem 0.75rem 0.75rem;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .focus-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

    .btn {
        width: 200px;
        text-align: center;
    }
}

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

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

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

    .hero-slider {
        height: 250px;
        max-width: 100%;
        width: 100%;
    }

    .hero-slider .slide-caption {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .hero-slider .slider-controls button {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .intro-text h2,
    .focus-areas h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================= */

/* Base mobile fixes */
* {
    box-sizing: border-box;
}

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

/* Tablet (max 992px) */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .recognition-levels {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .volunteer-opportunities {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .program-content {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-content {
        flex-direction: column;
        gap: 2rem;
    }

    .structure-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.2rem !important; }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Sections padding */
    section {
        padding: 2.5rem 0 !important;
    }

    /* Nav */
    .nav-menu {
        background-color: #2d7a2d;
        z-index: 999;
    }

    /* Hero */
    .hero {
        padding: 4rem 1rem !important;
        min-height: 300px !important;
    }

    .hero-content {
        padding: 0 !important;
    }

    /* Grids - stack to single column */
    .about-content,
    .team-grid,
    .objectives-grid,
    .values-grid,
    .achievements-grid,
    .contact-grid,
    .recognition-levels,
    .benefits-grid,
    .volunteer-opportunities,
    .partners-grid,
    .goals-grid,
    .focus-grid,
    .vision-mission-grid,
    .stories-grid,
    .environmental-metrics,
    .impact-grid,
    .activities-grid,
    .overview-content {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }

    /* Impact highlights - 2 columns on mobile */
    .impact-highlights {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Stats grid - 2 columns */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Program header */
    .program-header {
        flex-direction: column;
        text-align: center;
    }

    /* Section header */
    .section-header {
        flex-direction: column;
        text-align: center;
    }

    /* CTA buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Hero buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Cards */
    .opportunity-card,
    .benefit-item,
    .recognition-level,
    .achievement-card,
    .story-card,
    .partner-item,
    .goal-item,
    .contact-card,
    .hours-card,
    .objective-card,
    .value-item {
        width: 100%;
    }

    /* Story cards */
    .story-card {
        flex-direction: column !important;
    }

    /* Overview stats */
    .overview-stats {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    /* Intro content row */
    .intro-content-row {
        flex-direction: column;
    }

    /* Program section */
    .program-section {
        padding: 1.5rem !important;
    }

    /* Donation banner */
    .donation-banner {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .donation-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        white-space: normal;
        text-align: center;
    }

    /* Page header */
    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem !important;
    }

    /* Social links */
    .social-links {
        flex-direction: column;
    }

    /* Hours grid */
    .hours-grid {
        grid-template-columns: 1fr !important;
    }

    /* Map container */
    .map-container {
        flex-direction: column;
        text-align: center;
    }

    /* Org chart */
    .chart-levels {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Logo */
    .logo img {
        max-height: 50px;
    }
}

/* Small mobile (max 480px) */
@media (max-width: 480px) {
    /* Impact highlights - single column */
    .impact-highlights {
        grid-template-columns: 1fr !important;
    }

    /* Stats - single column */
    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    /* Recognition levels */
    .recognition-levels {
        grid-template-columns: 1fr !important;
    }

    /* Benefits grid */
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }

    /* Buttons full width */
    .btn {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
    }

    /* Donation banner */
    .account-number {
        display: block;
        margin-top: 0.25rem;
    }

    /* Page header */
    .page-header h1 {
        font-size: 1.5rem !important;
    }

    /* Focus grid */
    .focus-grid {
        grid-template-columns: 1fr !important;
    }

    /* Team grid */
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #2c7a2c 0%, #1a5490 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-background {
    padding: 4rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CEO Image Styles */
.ceo-image {
    text-align: center;
    max-width: 350px;
}

.ceo-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
    border: 4px solid white;
    transition: transform 0.3s ease;
}

.ceo-image:hover img {
    transform: scale(1.02);
}

.ceo-caption {
    background: linear-gradient(135deg, #4ade80 0%, #60a5fa 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.2);
}

.ceo-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ceo-caption p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
    line-height: 1.5;
}

.objectives {
    padding: 4rem 0;
}

.objectives h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

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

.vision-card, .mission-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 15px 15px 0 0;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.objective-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

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

/* Value Items Enhancement */
.value-item {
    background: var(--bg-white);
    border: 2px solid #e5e7eb;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 15px 15px 0 0;
    transition: transform 0.6s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.objective-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.objective-card h3 {
    color: #1a5490;
    margin-bottom: 1rem;
}

.objective-card p {
    color: #4b5563;
}

.organizational-structure {
    padding: 4rem 0;
    background: white;
}

.organizational-structure h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

.structure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.structure-levels {
    margin-top: 2rem;
}

.structure-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafb;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

.structure-item h4 {
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafb 0%, #e0f2fe 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chart-level {
    background: linear-gradient(135deg, #4ade80 0%, #60a5fa 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    min-width: 220px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chart-level:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
}

.chart-level.top {
    background: linear-gradient(135deg, #1a5490 0%, #2563eb 100%);
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.3);
}

.chart-level.bottom {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    font-size: 1rem;
    padding: 1rem 2rem;
}

.chart-levels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.chart-levels .chart-level {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    min-width: auto;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.25);
}

.chart-levels .chart-level:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
}

/* Add connecting lines */
.org-chart::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #4ade80, #60a5fa);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.org-chart {
    position: relative;
}

.values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.values h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a5490;
    margin-bottom: 3.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #60a5fa, #4ade80);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4ade80;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotateY(10deg);
}

.value-item h3 {
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.value-item:hover h3 {
    color: #059669;
}

.value-item p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.value-item:hover p {
    color: #1f2937;
}

/* Centered value item styling */
.value-centered {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 2px solid #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
    text-align: center;
    padding: 3.5rem 2.5rem;
}

.value-centered::before {
    background: linear-gradient(90deg, #22c55e, #4ade80, #22c55e);
}

.value-centered .value-icon {
    font-size: 4.5rem;
    color: #22c55e;
    margin-bottom: 2rem;
    display: inline-block;
}

.value-centered h3 {
    color: #166534;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.value-centered p {
    color: #166534;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

/* Value-specific colors */
.value-item:nth-child(1) { --value-color: #10b981; }
.value-item:nth-child(2) { --value-color: #3b82f6; }
.value-item:nth-child(3) { --value-color: #8b5cf6; }
.value-item:nth-child(4) { --value-color: #f59e0b; }

.value-item:nth-child(1)::before { background: linear-gradient(90deg, #10b981, #34d399, #10b981); }
.value-item:nth-child(2)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6); }
.value-item:nth-child(3)::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa, #8b5cf6); }
.value-item:nth-child(4)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b); }

.team {
    padding: 4rem 0;
    background: white;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

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

.team-member {
    text-align: center;
    padding: 2.5rem;
    background: #f8fafb;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #4ade80;
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 4px solid white;
    background: #f1f5f9;
}

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

.team-member:hover .member-image img {
    transform: scale(1.08);
}

.team-member h3 {
    color: #1a5490;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.team-member p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Team section header */
.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .member-image {
        width: 100px;
        height: 100px;
    }
}
    
    .team-member {
        padding: 2rem;
    }
    
    .team-member h3 {
        font-size: 1.2rem;
    }
}

/* Programs Page Styles */
.programs-intro {
    padding: 4rem 0;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

.program-details {
    padding: 4rem 0;
    background: #f8fafb;
}

.program-section {
    background: white;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.program-header {
    background: linear-gradient(135deg, #4ade80 0%, #60a5fa 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.program-icon {
    font-size: 3rem;
}

.program-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.program-content {
    padding: 2rem;
}

.program-description {
    margin-bottom: 2rem;
}

.program-description p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
}

.program-activities h3 {
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.activity-item {
    padding: 1.5rem;
    background: #f8fafb;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

.activity-item h4 {
    color: #1a5490;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

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

.program-impact {
    padding: 4rem 0;
    background: white;
}

.program-impact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

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

.impact-item {
    background: #f8fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-item h3 {
    color: #1a5490;
    margin-bottom: 1rem;
}

.impact-item ul {
    list-style: none;
    padding: 0;
}

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

.impact-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

/* Impact Page Styles */
.impact-overview {
    padding: 4rem 0;
    background: white;
}

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

.overview-text h2 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.overview-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

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

.stat-highlight {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #4ade80 0%, #60a5fa 100%);
    color: white;
    border-radius: 12px;
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.key-achievements {
    padding: 4rem 0;
    background: #f8fafb;
}

.key-achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

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

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

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

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-card h3 {
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

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

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

.success-stories {
    padding: 4rem 0;
    background: white;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

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

.story-card {
    background: #f8fafb;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.story-image {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    color: #1a5490;
    margin-bottom: 1rem;
}

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

.story-impact {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.impact-tag {
    background: #1a5490;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.environmental-impact {
    padding: 4rem 0;
    background: #f8fafb;
}

.environmental-impact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

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

.metric-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metric-item h3 {
    color: #1a5490;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.metric-item p {
    color: #4b5563;
}

.partners-impact {
    padding: 4rem 0;
    background: white;
}

.partners-impact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 2rem;
}

.partners-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.partner-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partner-item h3 {
    color: #1a5490;
    margin-bottom: 1rem;
}

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

.future-goals {
    padding: 4rem 0;
    background: #f8fafb;
}

.future-goals h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

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

.goal-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.goal-year {
    background: linear-gradient(135deg, #4ade80 0%, #60a5fa 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1rem;
}

.goal-item h3 {
    color: #1a5490;
    margin-bottom: 1rem;
}

.goal-item ul {
    list-style: none;
    padding: 0;
}

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

.goal-item li:before {
    content: "🎯";
    position: absolute;
    left: 0;
}

/* Get Involved Page Styles */
.involvement-intro {
    padding: 4rem 0;
    background: white;
}

.volunteer-section {
    padding: 4rem 0;
    background: #f8fafb;
}

.volunteer-section .section-header {
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.volunteer-section .section-title h2,
.volunteer-section .section-title p {
    text-align: center;
}
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #4b5563;
    font-size: 1.1rem;
}

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

.opportunity-card {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

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

.opportunity-card h3 {
    color: #1a5490;
    margin-bottom: 1rem;
}

.opportunity-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.opportunity-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

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

.opportunity-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.volunteer-benefits {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.volunteer-benefits h3 {
    text-align: center;
    color: #1a5490;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #4b5563;
    font-size: 0.9rem;
}

.partnership-section {
    padding: 4rem 0;
    background: white;
}

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

.partnership-card {
    background: #f8fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.partnership-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partnership-card h3 {
    color: #1a5490;
    margin-bottom: 1rem;
}

.partnership-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.partnership-benefits {
    text-align: left;
    margin-bottom: 1.5rem;
}

.partnership-benefits h4 {
    color: #1a5490;
    margin-bottom: 0.75rem;
}

.partnership-benefits ul {
    list-style: none;
    padding: 0;
}

.partnership-benefits li {
    padding: 0.25rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.partnership-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.donation-section {
    padding: 4rem 0;
    background: #f8fafb;
}

.donation-impact {
    margin-bottom: 3rem;
}

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

.impact-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.impact-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.impact-description {
    color: #4b5563;
    font-size: 0.9rem;
}

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

.donation-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.donation-form h3 {
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.donation-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.donation-info h3 {
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.giving-options {
    margin-bottom: 2rem;
}

.giving-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafb;
    border-radius: 8px;
}

.giving-option h4 {
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.giving-option p {
    color: #4b5563;
    font-size: 0.9rem;
}

.tax-info {
    padding: 1rem;
    background: #eff6ff;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

.tax-info h4 {
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.tax-info p {
    color: #4b5563;
    font-size: 0.9rem;
}

.recognition {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #e0f2fe 100%);
}

.recognition h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.recognition > .container > p {
    text-align: center;
    color: #4b5563;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.recognition-level {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recognition-level:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Green Champion */
.recognition-level:nth-child(1) {
    border-top: 5px solid #16a34a;
}
.recognition-level:nth-child(1) h3 {
    color: #16a34a;
}
.recognition-level:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #16a34a, #4ade80);
}

/* Earth Guardian */
.recognition-level:nth-child(2) {
    border-top: 5px solid #1a5490;
}
.recognition-level:nth-child(2) h3 {
    color: #1a5490;
}
.recognition-level:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a5490, #60a5fa);
}

/* Climate Hero */
.recognition-level:nth-child(3) {
    border-top: 5px solid #d97706;
}
.recognition-level:nth-child(3) h3 {
    color: #d97706;
}
.recognition-level:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d97706, #fbbf24);
}

.recognition-level h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.recognition-level p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    background: #f3f4f6;
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
}

.recognition-level ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
}

.recognition-level li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.8rem;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}

.recognition-level li:last-child {
    border-bottom: none;
}

.recognition-level li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

/* Contact Page Styles */
.contact-intro {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.contact-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-text h2 {
    font-size: 2.8rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image .placeholder-image {
    font-size: 8rem;
    opacity: 0.8;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.contact-info {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}

.contact-info h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a5490;
    margin-bottom: 3.5rem;
    font-weight: 700;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #60a5fa);
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #60a5fa, #4ade80);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4ade80;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotateY(10deg);
}

.contact-card h3 {
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card:hover h3 {
    color: #059669;
}

.contact-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.contact-card:hover p {
    color: #1f2937;
}

.contact-card strong {
    color: #1a5490;
    font-weight: 600;
}

.map-placeholder {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafb 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-color: #60a5fa;
}

.map-placeholder .placeholder-image {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Social Links Styling */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.5);
    border-radius: 12px;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background: white;
    color: #1a5490;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #4ade80;
}

.social-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ade80, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-link div {
    text-align: left;
}

.social-link strong {
    color: #1a5490;
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a5490;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: fit-content;
}

.form-info h3 {
    color: #1a5490;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.help-topics {
    margin-bottom: 2rem;
}

.help-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafb 0%, #e0f2fe 100%);
    border-radius: 12px;
    border-left: 4px solid #4ade80;
    transition: all 0.3s ease;
}

.help-item:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.help-item h4 {
    color: #1a5490;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.help-item p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.response-time {
    padding: 1.5rem;
    background: linear-gradient(135deg, #4ade80 0%, #60a5fa 100%);
    color: white;
    border-radius: 12px;
    text-align: center;
}

.response-time h4 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.response-time p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-intro {
        padding: 3rem 0;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-text h2 {
        font-size: 2.2rem;
    }
    
    .intro-image .placeholder-image {
        font-size: 6rem;
    }
    
    .contact-info {
        padding: 3rem 0;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-info {
        padding: 2rem;
    }
}

.response-time {
    padding: 1rem;
    background: #eff6ff;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

.response-time h4 {
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.response-time p {
    color: #4b5563;
    font-size: 0.9rem;
}

.contact-form {
    background: #f8fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.directions {
    padding: 4rem 0;
    background: #f8fafb;
}

.directions h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

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

.directions-text h3 {
    color: #1a5490;
    margin-bottom: 1.5rem;
}

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

.transport-options {
    margin-bottom: 2rem;
}

.transport-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

.transport-option h4 {
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.transport-option p {
    color: #4b5563;
    font-size: 0.9rem;
}

.local-info {
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.local-info h4 {
    color: #1a5490;
    margin-bottom: 1rem;
}

.local-info ul {
    list-style: none;
    padding: 0;
}

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

.local-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.map-placeholder-large {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.map-placeholder-large h4 {
    color: #1a5490;
    margin-top: 1rem;
}

.map-placeholder-large p {
    color: #4b5563;
    font-size: 0.9rem;
}

.office-hours {
    padding: 4rem 0;
    background: white;
}

.office-hours h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

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

.hours-card {
    background: #f8fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.hours-card h3 {
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.hours-list {
    margin-bottom: 1rem;
}

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

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

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

.time {
    color: #1a5490;
    font-weight: 500;
}

.hours-note {
    color: #4b5563;
    font-size: 0.9rem;
    font-style: italic;
}

.emergency-info {
    color: #4b5563;
}

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

.emergency-info strong {
    color: #1a5490;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* =============================================
   ENHANCED MOBILE READABILITY FIXES
   ============================================= */

@media (max-width: 768px) {

    /* Reduce all body text size for readability */
    body {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* Paragraphs - shorter line length, better spacing */
    p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1rem !important;
    }

    /* Headings - tighter on mobile */
    h1 { font-size: 1.6rem !important; line-height: 1.2 !important; }
    h2 { font-size: 1.35rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.1rem !important; }
    h4 { font-size: 1rem !important; }

    /* Hero section */
    .hero {
        padding: 3rem 1.25rem !important;
        min-height: unset !important;
    }
    .hero h1 { font-size: 1.6rem !important; }
    .hero p { font-size: 1rem !important; }

    /* Page headers */
    .page-header { padding: 2rem 1rem !important; }
    .page-header h1 { font-size: 1.5rem !important; }
    .page-header p { font-size: 0.95rem !important; }

    /* Section padding - less vertical space */
    section { padding: 2rem 0 !important; }

    /* Container padding */
    .container { padding: 0 1rem !important; }

    /* Cards - reduce padding */
    .opportunity-card,
    .benefit-item,
    .objective-card,
    .value-item,
    .achievement-card,
    .contact-card,
    .hours-card,
    .recognition-level,
    .partner-item,
    .goal-item,
    .program-section,
    .story-card {
        padding: 1.25rem !important;
    }

    /* Vision/Mission cards */
    .vision-card, .mission-card {
        padding: 1.5rem !important;
    }

    /* About section text */
    .about-text h2 { font-size: 1.35rem !important; }
    .about-text p { font-size: 0.95rem !important; }

    /* Team member */
    .team-member { padding: 1rem !important; }
    .team-member h3 { font-size: 1rem !important; }
    .team-member p { font-size: 0.88rem !important; }

    /* Program sections */
    .program-header { gap: 0.75rem !important; padding: 0 !important; }
    .program-title h2 { font-size: 1.2rem !important; }
    .program-title p { font-size: 0.9rem !important; }
    .program-description p { font-size: 0.92rem !important; }
    .activity-item h4 { font-size: 0.95rem !important; }
    .activity-item p { font-size: 0.88rem !important; }

    /* Stats */
    .stat-number { font-size: 1.8rem !important; }
    .stat-label { font-size: 0.82rem !important; }
    .stat-number-large { font-size: 2rem !important; }

    /* Impact items */
    .impact-amount { font-size: 1.4rem !important; }
    .impact-description { font-size: 0.85rem !important; }

    /* Donation banner */
    .donation-btn {
        font-size: 0.82rem !important;
        padding: 0.6rem 0.75rem !important;
        line-height: 1.4 !important;
    }

    /* Footer */
    .footer-section h3,
    .footer-section h4 { font-size: 1rem !important; }
    .footer-section p,
    .footer-section li { font-size: 0.88rem !important; }
    .footer-bottom p { font-size: 0.8rem !important; }

    /* Buttons */
    .btn {
        font-size: 0.9rem !important;
        padding: 0.65rem 1.25rem !important;
    }

    /* Nav menu items */
    .nav-menu a { font-size: 1rem !important; padding: 0.75rem 1rem !important; }

    /* Recognition cards */
    .recognition-level h3 { font-size: 1.1rem !important; }
    .recognition-level p { font-size: 0.88rem !important; }
    .recognition-level li { font-size: 0.88rem !important; }

    /* Contact cards */
    .contact-card h3 { font-size: 1rem !important; }
    .contact-card p { font-size: 0.88rem !important; }

    /* Story cards */
    .story-content h3 { font-size: 1.05rem !important; }
    .story-content p { font-size: 0.9rem !important; }

    /* Goals */
    .goal-year { font-size: 1.5rem !important; }
    .goal-item h3 { font-size: 1rem !important; }
    .goal-item li { font-size: 0.88rem !important; }

    /* Volunteer benefits */
    .benefit-item h4 { font-size: 0.95rem !important; }
    .benefit-item p { font-size: 0.88rem !important; }

    /* Intro sections */
    .intro-text h2 { font-size: 1.3rem !important; }
    .intro-text p { font-size: 0.95rem !important; }

    /* CTA section */
    .cta-content h2 { font-size: 1.4rem !important; }
    .cta-content p { font-size: 0.95rem !important; }

    /* Org chart */
    .chart-level { font-size: 0.85rem !important; padding: 0.5rem !important; }

    /* Map text */
    .map-text strong { font-size: 0.95rem !important; }
    .map-text p { font-size: 0.82rem !important; }

    /* Social links */
    .social-link { font-size: 0.88rem !important; }

    /* Hours */
    .hours-item .day,
    .hours-item .time { font-size: 0.88rem !important; }

    /* Prevent text overflow */
    * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    body { font-size: 14px !important; }
    h1 { font-size: 1.4rem !important; }
    h2 { font-size: 1.2rem !important; }
    h3 { font-size: 1rem !important; }
    p { font-size: 0.9rem !important; }

    .hero h1 { font-size: 1.4rem !important; }
    .hero p { font-size: 0.92rem !important; }

    .page-header h1 { font-size: 1.3rem !important; }

    .btn {
        font-size: 0.85rem !important;
        padding: 0.6rem 1rem !important;
    }

    .donation-btn { font-size: 0.78rem !important; }

    .stat-number { font-size: 1.5rem !important; }
    .stat-number-large { font-size: 1.8rem !important; }

    /* Single column everything */
    .focus-grid,
    .team-grid,
    .objectives-grid,
    .values-grid,
    .benefits-grid,
    .recognition-levels,
    .impact-highlights,
    .stats-grid,
    .activities-grid,
    .achievements-grid,
    .contact-grid,
    .partners-grid {
        grid-template-columns: 1fr !important;
    }
}
