/* ========================================
   SERC Landing Page Custom Styles
   ======================================== */

/* ========================================
   ANNOUNCEMENT / FACT-CHECK SECTION
   ======================================== */

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, #c0392b 0%, #96281b 100%);
    padding: 20px 0;
    text-align: center;
}

.announcement-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.announcement-badge {
    display: inline-block;
    background: #fff;
    color: #c0392b;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.announcement-badge i {
    margin-right: 8px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.announcement-header h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fact Check Section */
.fact-check-section {
    background: #f8f9fa;
    padding: 60px 0;
    border-bottom: 4px solid #c0392b;
}

/* Claim Box */
.claim-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #c0392b;
}

.claim-box h3 {
    color: #c0392b;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.claim-box h3 i {
    margin-right: 10px;
    opacity: 0.5;
}

.claim-box > p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.claim-context {
    background: #fef5f5;
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed #c0392b;
}

.claim-context p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Facts Box */
.facts-box {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-top: 5px solid #1a5f2a;
}

.facts-box h3 {
    color: #1a1c1f;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.fact-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fact-item.false {
    background: #fef5f5;
    border: 1px solid #f5c6cb;
}

.fact-item.false i {
    color: #c0392b;
    font-size: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.fact-item span {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
}

.fact-item strong {
    color: #c0392b;
}

/* Services Clarification */
.services-clarification {
    background: #f0f7f1;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.services-clarification h4 {
    color: #1a5f2a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.services-clarification .highlight {
    background: #1a5f2a;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
}

.service-item i {
    color: #1a5f2a;
    font-size: 16px;
    margin-right: 10px;
}

.service-item span {
    font-size: 14px;
    color: #333;
}

/* Fabricated Notice */
.fabricated-notice {
    background: #fff3cd;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.fabricated-notice p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

/* Harassment Notice */
.harassment-notice {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    margin-top: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 2px solid #e9ecef;
}

.spread-knowledge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.spread-knowledge i {
    margin-right: 10px;
    font-size: 18px;
}

.harassment-notice p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.harassment-notice p:last-child {
    margin-bottom: 0;
}

.harassment-notice u {
    color: #c0392b;
    font-weight: 600;
}

/* Responsive for Announcement */
@media (max-width: 991px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .announcement-header h2 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .announcement-header h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .claim-box,
    .facts-box {
        margin-bottom: 20px;
    }

    .fact-check-section {
        padding: 40px 0;
    }

    .facts-box {
        padding: 25px;
    }

    .fact-item {
        padding: 12px 15px;
    }

    .fact-item.false i {
        font-size: 20px;
    }

    .fact-item span {
        font-size: 14px;
    }
}

/* Modern Hero Section */
.modern-hero {
    background: linear-gradient(135deg, #1a5f2a 0%, #0d3d1a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, transparent 100%);
}

.modern-hero-content {
    position: relative;
    z-index: 1;
    color: #fff !important;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.modern-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.2;
    color: #ffffff !important;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff !important;
    margin-bottom: 25px;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #CC6633, #e07840);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: #ffffff !important;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    background: #CC6633;
    color: #fff;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #CC6633;
}

.btn-hero-primary:hover {
    background: #b55a2a;
    border-color: #b55a2a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 102, 51, 0.4);
}

.btn-hero-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

/* Mission Banner */
.mission-banner {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.mission-banner p {
    font-size: 18px;
    line-height: 1.8;
    color: #5f646b;
    margin: 0;
    font-style: italic;
}

/* Info Cards (No Images) */
.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #1a5f2a;
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.info-card-icon i {
    font-size: 30px;
    color: #fff;
}

.info-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a5f2a;
    margin-bottom: 15px;
}

.info-card-content p {
    color: #5f646b;
    line-height: 1.7;
    margin-bottom: 12px;
}

.info-card-content .highlight-text {
    font-weight: 600;
    color: #23262a;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid #1a5f2a;
    margin-top: 15px;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #23262a 0%, #1a1c1f 100%);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-item i {
    font-size: 40px;
    color: #CC6633;
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1a5f2a 0%, #0d3d1a 100%);
    padding: 80px 0;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Legacy Hero Section (kept for compatibility) */
.hero-section {
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 50%, #1a5f2a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern-overlay.png') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .lead {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-content .subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
}

/* Focus Areas Section */
.focus-areas {
    padding: 70px 0;
    background: #f8f9fa;
}

.focus-areas .section-title {
    margin-bottom: 50px;
}

.focus-area-item {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #1a5f2a;
}

.focus-area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.focus-area-item i {
    font-size: 40px;
    color: #1a5f2a;
    margin-bottom: 20px;
    display: block;
}

.focus-area-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #23262a;
    margin-bottom: 10px;
}

/* Get Involved CTA */
.get-involved-cta {
    background: linear-gradient(135deg, #CC6633 0%, #e07840 100%);
    padding: 50px 0;
    text-align: center;
}

.get-involved-cta h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

.cta-buttons .btn-cta {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px 10px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-light {
    background: #fff;
    color: #CC6633;
}

.btn-cta-light:hover {
    background: #f8f8f8;
    color: #b55a2a;
    text-decoration: none;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-outline:hover {
    background: #fff;
    color: #CC6633;
    text-decoration: none;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: #fff;
}

.about-preview .section-title h2 {
    color: #1a5f2a;
}

.about-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-card-img {
    height: 200px;
    overflow: hidden;
}

.about-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-card:hover .about-card-img img {
    transform: scale(1.1);
}

.about-card-content {
    padding: 25px;
}

.about-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a5f2a;
    margin-bottom: 15px;
}

.about-card-content p {
    color: #5f646b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.program-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a5f2a, #2d8a3e);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.program-card .program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.program-card .program-icon i {
    font-size: 28px;
    color: #fff;
}

.program-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #23262a;
    margin-bottom: 15px;
}

.program-card p {
    color: #5f646b;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.program-card ul li {
    color: #5f646b;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Community Impact Section */
.community-impact {
    padding: 80px 0;
    background: #1a5f2a;
    color: #fff;
    position: relative;
}

.community-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern-overlay.png') repeat;
    opacity: 0.05;
}

.community-impact .container {
    position: relative;
    z-index: 1;
}

.community-impact .section-title h2 {
    color: #fff;
}

.community-impact .section-title p {
    color: rgba(255,255,255,0.85);
}

.impact-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.impact-stat:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.impact-stat i {
    font-size: 45px;
    color: #ffd700;
    margin-bottom: 15px;
}

.impact-stat h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.impact-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
}

.impact-list li:last-child {
    border-bottom: none;
}

.impact-list li i {
    color: #ffd700;
    margin-right: 15px;
    font-size: 18px;
}

/* Who We Serve Section */
.who-we-serve {
    padding: 80px 0;
    background: #fff;
}

.serve-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.serve-item:hover {
    background: #1a5f2a;
    color: #fff;
}

.serve-item:hover i,
.serve-item:hover h4 {
    color: #fff;
}

.serve-item i {
    font-size: 50px;
    color: #1a5f2a;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.serve-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #23262a;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.serve-item p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Partnerships Section */
.partnerships-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.partnership-benefits li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
}

.partnership-benefits li:last-child {
    border-bottom: none;
}

.partnership-benefits li i {
    color: #1a5f2a;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 18px;
}

.partnership-benefits li span {
    color: #5f646b;
    line-height: 1.6;
}

/* Nutrition Support Section */
.nutrition-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #fff 100%);
}

.nutrition-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nutrition-card h3 {
    color: #CC6633;
    font-size: 24px;
    margin-bottom: 20px;
}

.nutrition-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.nutrition-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.nutrition-list li i {
    color: #CC6633;
    margin-right: 12px;
    font-size: 16px;
}

.nutrition-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #CC6633;
    margin-top: 20px;
}

.nutrition-note p {
    margin-bottom: 0;
    font-style: italic;
    color: #5f646b;
}

/* Official Notice Section */
.official-notice {
    padding: 60px 0;
    background: #fff3cd;
}

.notice-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #ffc107;
}

.notice-card .notice-badge {
    display: inline-block;
    background: #ffc107;
    color: #856404;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.notice-card h3 {
    color: #856404;
    font-size: 22px;
    margin-bottom: 20px;
}

.notice-card p {
    color: #5f646b;
    line-height: 1.7;
}

.notice-card ul {
    padding-left: 20px;
    margin: 20px 0;
}

.notice-card ul li {
    margin-bottom: 10px;
    color: #5f646b;
}

/* Partner Sites Section */
.partner-sites {
    padding: 80px 0;
    background: #fff;
}

.partner-support-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.partner-support-item:hover {
    background: #e9ecef;
}

.partner-support-item i {
    font-size: 24px;
    color: #1a5f2a;
    margin-right: 20px;
    margin-top: 5px;
}

.partner-support-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #23262a;
    margin-bottom: 5px;
}

.partner-support-item p {
    font-size: 14px;
    color: #5f646b;
    margin-bottom: 0;
}

/* Section Titles */
.section-title-new {
    margin-bottom: 50px;
}

.section-title-new h2 {
    font-size: 36px;
    font-weight: 700;
    color: #23262a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-new h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1a5f2a;
}

.section-title-new.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title-new p {
    font-size: 16px;
    color: #5f646b;
    max-width: 700px;
    line-height: 1.7;
}

.section-title-new.text-center p {
    margin: 0 auto;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.value-item {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #1a5f2a;
    color: #fff;
}

.value-item i {
    color: #1a5f2a;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.value-item:hover i {
    color: #ffd700;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .modern-hero-content h1 {
        font-size: 40px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-title-new h2 {
        font-size: 28px;
    }

    .program-card,
    .about-card,
    .info-card {
        margin-bottom: 20px;
    }

    .stat-item h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .modern-hero {
        padding: 80px 0;
    }

    .modern-hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content .lead {
        font-size: 16px;
    }

    .get-involved-cta h3 {
        font-size: 22px;
    }

    .cta-buttons .btn-cta {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }

    .focus-areas,
    .about-preview,
    .programs-section,
    .community-impact,
    .who-we-serve,
    .partnerships-section,
    .nutrition-section,
    .partner-sites {
        padding: 50px 0;
    }

    .section-title-new h2 {
        font-size: 24px;
    }

    .nutrition-card,
    .notice-card {
        padding: 25px;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .final-cta p {
        font-size: 16px;
    }

    .info-card {
        padding: 25px;
    }

    .info-card-icon {
        width: 60px;
        height: 60px;
    }

    .info-card-icon i {
        font-size: 24px;
    }

    .mission-banner {
        padding: 30px 0;
    }

    .mission-banner p {
        font-size: 16px;
    }
}

/* ========================================
   CONTRAST & VISIBILITY FIXES
   ======================================== */

/* Section Title Contrast Fixes */
.section-title-new h2 {
    color: #1a1c1f;
}

.section-title-new p {
    color: #4a4a4a;
}

/* Dark Background Section Text */
.community-impact .section-title-new h2,
.final-cta h2 {
    color: #ffffff;
}

.community-impact .section-title-new p,
.community-impact p {
    color: rgba(255, 255, 255, 0.9);
}

/* Impact List Text */
.impact-list li {
    color: #ffffff;
    font-size: 16px;
}

/* Info Card Text Contrast */
.info-card-content p {
    color: #333333;
}

/* Program Card Text */
.program-card p {
    color: #444444;
}

.program-card ul li {
    color: #444444;
}

/* Focus Area Item Text */
.focus-area-item h4 {
    color: #1a1c1f;
}

/* Serve Item Text */
.serve-item h4 {
    color: #1a1c1f;
}

.serve-item p {
    color: #555555;
}

.serve-item:hover h4,
.serve-item:hover p {
    color: #ffffff;
}

/* Partner Support Item */
.partner-support-item h5 {
    color: #1a1c1f;
}

.partner-support-item p {
    color: #555555;
}

/* Partnership Benefits */
.partnership-benefits li span {
    color: #333333;
}

/* Nutrition Card */
.nutrition-card p {
    color: #333333;
}

.nutrition-list li {
    color: #333333;
}

.nutrition-note p {
    color: #444444;
}

/* Notice Card */
.notice-card p {
    color: #333333;
}

.notice-card ul li {
    color: #333333;
}

/* Stats Section Text */
.stat-item p {
    color: rgba(255, 255, 255, 0.85);
}

/* Values Grid */
.value-item {
    color: #1a1c1f;
}

/* General Text Improvements */
.about-preview p,
.programs-section p,
.who-we-serve p,
.partnerships-section p {
    color: #333333;
}

/* Link Hover States */
.footer-links li a:hover {
    color: #CC6633 !important;
}

/* Hero Section - Force White Text */
.modern-hero,
.modern-hero * {
    color: #ffffff;
}

.modern-hero .hero-badge {
    color: #ffffff !important;
}

.modern-hero h1,
.modern-hero .hero-tagline,
.modern-hero .hero-description,
.modern-hero p {
    color: #ffffff !important;
}

.modern-hero .btn-hero-primary {
    color: #ffffff !important;
}

.modern-hero .btn-hero-secondary {
    color: #ffffff !important;
}

/* ========================================
   ENHANCED LANDING PAGE STYLES
   ======================================== */

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #fff;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #CC6633;
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #fff;
    top: 50%;
    left: 10%;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.7);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-scroll-indicator i {
    font-size: 20px;
}

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-scale {
    animation: scaleIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleIn {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Section Labels */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-label.light {
    background: rgba(255,255,255,0.2);
}

/* Mission Banner Enhanced */
.mission-banner {
    background: #f8f9fa;
    padding: 50px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.mission-quote-icon {
    font-size: 40px;
    color: #1a5f2a;
    opacity: 0.3;
    display: block;
    margin-bottom: 15px;
}

.mission-banner p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    font-style: italic;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #fff;
}

.why-choose-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1c1f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-choose-content > p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.why-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

.why-list li i {
    color: #1a5f2a;
    margin-right: 12px;
    font-size: 18px;
}

.why-choose-cards {
    padding-left: 30px;
}

.why-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.why-card.elevated {
    margin-top: 30px;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #1a5f2a;
}

.why-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card-icon i {
    font-size: 26px;
    color: #fff;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1c1f;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Focus Area Enhanced */
.focus-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.focus-icon-wrap i {
    font-size: 32px;
    color: #fff;
}

.focus-area-item {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

.focus-area-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #1a5f2a;
}

.focus-area-item:hover .focus-icon-wrap {
    transform: scale(1.1);
}

.focus-area-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1c1f;
    margin-bottom: 8px;
}

.focus-area-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Stats Section Enhanced */
.stats-section {
    background: linear-gradient(135deg, #1a1c1f 0%, #2d3035 100%);
    padding: 70px 0;
    position: relative;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(204, 102, 51, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 28px;
    color: #CC6633;
}

.stat-item h3 {
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.stat-plus {
    font-size: 28px;
    color: #CC6633;
    font-weight: 700;
    vertical-align: top;
}

/* Program Cards New */
.program-card-new {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
    height: 100%;
}

.program-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.program-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.program-card-icon.orange {
    background: linear-gradient(135deg, #CC6633 0%, #e07840 100%);
}

.program-card-icon i {
    font-size: 28px;
    color: #fff;
}

.program-card-new h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1c1f;
    margin-bottom: 15px;
}

.program-card-new ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.program-card-new ul li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.program-card-new ul li:last-child {
    border-bottom: none;
}

.program-card-new ul li::before {
    content: '\f00c';
    font-family: FontAwesome;
    color: #1a5f2a;
    margin-right: 10px;
    font-size: 12px;
}

.program-link {
    color: #1a5f2a;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-link:hover {
    color: #CC6633;
    text-decoration: none;
}

.program-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.program-link:hover i {
    transform: translateX(5px);
}

/* CTA Pattern */
.get-involved-cta {
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.get-involved-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 25px;
}

/* Values Tags */
.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.value-tag {
    background: #f0f7f1;
    color: #1a5f2a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.value-tag:hover {
    background: #1a5f2a;
    color: #fff;
}

/* Impact Section Enhanced */
.impact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.impact-highlights {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
}

.impact-highlight-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.impact-highlight-item i {
    color: #CC6633;
    font-size: 20px;
    margin-right: 15px;
}

.impact-highlight-item span {
    color: #fff;
    font-size: 16px;
}

/* Serve Items Enhanced */
.serve-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.serve-icon i {
    font-size: 32px;
    color: #1a5f2a;
    transition: all 0.3s ease;
}

.serve-item:hover .serve-icon {
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
}

.serve-item:hover .serve-icon i {
    color: #fff;
}

/* Partnership Section Enhanced */
.partnership-list {
    margin-top: 25px;
}

.partnership-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.partnership-icon {
    width: 30px;
    height: 30px;
    background: #1a5f2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.partnership-icon i {
    color: #fff;
    font-size: 12px;
}

.partnership-item span {
    color: #333;
    font-size: 15px;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-feature-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.partner-feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #1a5f2a;
}

.pf-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.pf-icon i {
    font-size: 20px;
    color: #fff;
}

.pf-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1c1f;
    margin-bottom: 5px;
}

.pf-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Notice Card Enhanced */
.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.notice-date {
    color: #856404;
    font-size: 14px;
    font-weight: 500;
}

.notice-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.notice-card ul li {
    padding: 10px 0;
    color: #333;
    display: flex;
    align-items: center;
}

.notice-card ul li i {
    color: #856404;
    margin-right: 10px;
}

.notice-footer {
    background: #fff8e1;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.notice-footer p {
    margin: 0;
    color: #333;
}

/* Final CTA Enhanced */
.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
}

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

/* Button Enhancements */
.btn-primary-custom i,
.btn-hero-primary i,
.btn-hero-secondary i,
.btn-cta i {
    margin-right: 8px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* Responsive Adjustments for New Elements */
@media (max-width: 991px) {
    .why-choose-cards {
        padding-left: 0;
        margin-top: 40px;
    }

    .why-card.elevated {
        margin-top: 0;
    }

    .why-choose-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .hero-scroll-indicator {
        display: none;
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-content h2 {
        font-size: 26px;
    }

    .mission-banner p {
        font-size: 16px;
    }

    .partner-feature-card {
        flex-direction: column;
        text-align: center;
    }

    .pf-icon {
        margin: 0 auto 15px;
    }

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

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

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button Styles */
.btn-primary-custom {
    background: #1a5f2a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: #145222;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 95, 42, 0.3);
}

.btn-secondary-custom {
    background: #CC6633;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: #b55a2a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 102, 51, 0.3);
}
