/* Impact Areas Page Styles - Minimalist Design */
:root {
    --fx-primary-color: #1a1a1a;
    --fx-secondary-color: #666;
    --fx-light-gray: #f5f5f5;
    --fx-border-color: #e0e0e0;
    --fx-background: #ffffff;
}

.impact-areas-page {
    background-color: var(--fx-background);
}

/* Section Styles */
.impact-section {
    padding: 6rem 0;
    position: relative;
}

.impact-section:nth-child(even) {
    background-color: var(--fx-light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--fx-primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--fx-secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-item {
    background: var(--fx-background);
    border: 1px solid var(--fx-border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-item:hover {
    border-color: var(--fx-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.impact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--fx-light-gray);
    transition: all 0.3s ease;
}

.impact-item:hover .impact-icon {
    background: var(--fx-primary-color);
}

.impact-icon i {
    font-size: 1.5rem;
    color: var(--fx-secondary-color);
    transition: all 0.3s ease;
}

.impact-item:hover .impact-icon i {
    color: var(--fx-background);
}

.impact-item h3 {
    font-size: 1.1rem;
    color: var(--fx-primary-color);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Section Specific Styles */
.environmental-impact .impact-item {
    border-top: 3px solid #4CAF50;
}

.social-impact .impact-item {
    border-top: 3px solid #2196F3;
}

.sustainability-impact .impact-item {
    border-top: 3px solid #FF9800;
}

/* Animation Classes */
.impact-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animation Delay */
.impact-item:nth-child(1) {
    animation-delay: 0.1s;
}

.impact-item:nth-child(2) {
    animation-delay: 0.2s;
}

.impact-item:nth-child(3) {
    animation-delay: 0.3s;
}

.impact-item:nth-child(4) {
    animation-delay: 0.4s;
}

.impact-item:nth-child(5) {
    animation-delay: 0.5s;
}

.impact-item:nth-child(6) {
    animation-delay: 0.6s;
}

.impact-item:nth-child(7) {
    animation-delay: 0.7s;
}

.impact-item:nth-child(8) {
    animation-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .impact-item {
        padding: 1.5rem;
    }
    
    .impact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .impact-icon i {
        font-size: 1.2rem;
    }
    
    .impact-item h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .impact-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .impact-item {
        padding: 1rem;
    }
    
    .impact-icon {
        width: 40px;
        height: 40px;
    }
    
    .impact-icon i {
        font-size: 1rem;
    }
}
