/* Impact Page Styles */
.impact-section {
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.impact-description {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: linear-gradient(180deg, #14255A 0%, #0066cc 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.stat-card i {
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Stories Section */
.stories-section {
    margin-bottom: 80px;
}

.stories-section h2,
.impact-areas h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.section-description {
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-size: 15px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.story-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

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

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

.story-content {
    padding: 25px;
}

.story-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.story-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 13px;
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.story-meta i {
    color: #14255A;
}

/* Impact Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.area-card {
    background: linear-gradient(180deg, #14255A 0%, #0066cc 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.area-content {
    color: white;
    width: 100%;
}

.area-card i {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    opacity: 0.9;
}

.area-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.area-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card ul li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .stats-grid,
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .area-card {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 100px 20px 40px;
    }

    .impact-header h1 {
        font-size: 28px;
    }

    .impact-description {
        font-size: 14px;
    }

    .stat-card {
        padding: 25px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stories-section h2,
    .impact-areas h2 {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .story-image {
        height: 180px;
    }

    .story-content {
        padding: 20px;
    }

    .area-card {
        min-height: 280px;
    }

    .area-content {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .impact-section {
        padding: 80px 15px 30px;
    }

    .impact-header h1 {
        font-size: 24px;
    }

    .impact-description {
        font-size: 13px;
    }

    .stats-grid,
    .stories-grid,
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 20px;
    }

    .story-image {
        height: 160px;
    }

    .story-content {
        padding: 15px;
    }

    .area-card {
        min-height: auto;
        padding: 25px;
    }
} 