/* Economic Impact Page Styles */
:root {
    --fx-primary-color: #1a1a1a;
    --fx-secondary-color: #666;
    --fx-light-gray: #f5f5f5;
    --fx-border-color: #e0e0e0;
    --fx-background: #ffffff;
}

.economic-page {
    min-height: 100vh;
    background: var(--fx-background);
}

/* Hero Section */
.economic-hero {
    padding: 6rem 0 0rem;
    background: var(--fx-background);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fx-primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--fx-secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Overview Section */
.overview-section {
    padding: 1rem 0;
    background: var(--fx-background);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--fx-background);
    border: 1px solid var(--fx-border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.overview-card:hover {
    border-color: var(--fx-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: var(--fx-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.overview-card:hover .overview-icon {
    background: var(--fx-primary-color);
}

.overview-icon i {
    font-size: 1.5rem;
    color: var(--fx-secondary-color);
    transition: color 0.3s ease;
}

.overview-card:hover .overview-icon i {
    color: var(--fx-background);
}

.overview-card h3 {
    font-size: 1.1rem;
    color: var(--fx-primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.overview-card p {
    color: var(--fx-secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--fx-light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--fx-background);
    border: 1px solid var(--fx-border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--fx-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--fx-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--fx-primary-color);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--fx-secondary-color);
    transition: color 0.3s ease;
}

.stat-card:hover .stat-icon i {
    color: var(--fx-background);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fx-primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--fx-secondary-color);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Details Section */
.details-section {
    padding: 2rem 0;
    background: var(--fx-background);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-card {
    background: var(--fx-background);
    border: 1px solid var(--fx-border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: var(--fx-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
    font-size: 1.1rem;
    color: var(--fx-primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievement-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.achievement-list li:hover {
    background: var(--fx-light-gray);
}

.achievement-list li i {
    font-size: 1.25rem;
    color: var(--fx-primary-color);
    margin-right: 1rem;
    min-width: 25px;
}

.achievement-list li span {
    color: var(--fx-secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Future Section */
.future-section {
    padding: 4rem 0;
    background: var(--fx-light-gray);
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.future-card {
    background: var(--fx-background);
    border: 1px solid var(--fx-border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.future-card:hover {
    border-color: var(--fx-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.future-icon {
    width: 60px;
    height: 60px;
    background: var(--fx-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.future-card:hover .future-icon {
    background: var(--fx-primary-color);
}

.future-icon i {
    font-size: 1.5rem;
    color: var(--fx-secondary-color);
    transition: color 0.3s ease;
}

.future-card:hover .future-icon i {
    color: var(--fx-background);
}

.future-card h4 {
    font-size: 1rem;
    color: var(--fx-primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.future-card p {
    color: var(--fx-secondary-color);
    line-height: 1.6;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Data Analysis Section */
.data-section {
    padding: 2rem 0;
    background: var(--fx-background);
}

.data-content {
    max-width: 800px;
    margin: 0 auto;
}

.data-content h2 {
    font-size: 1.5rem;
    color: var(--fx-primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.data-content p {
    color: var(--fx-secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.data-highlight {
    background: var(--fx-light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.data-highlight h3 {
    font-size: 1.1rem;
    color: var(--fx-primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.data-highlight ul {
    list-style: none;
    padding: 0;
}

.data-highlight li {
    color: var(--fx-secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    padding-left: 1.5rem;
    position: relative;
}

.data-highlight li::before {
    content: "•";
    color: var(--fx-primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .overview-grid,
    .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .overview-grid,
    .details-grid,
    .future-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .overview-card,
    .detail-card,
    .future-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .overview-card,
    .detail-card,
    .future-card {
        padding: 1rem;
    }
    
    .overview-icon,
    .stat-icon,
    .future-icon {
        width: 50px;
        height: 50px;
    }
    
    .overview-icon i,
    .stat-icon i,
    .future-icon i {
        font-size: 1.25rem;
    }
}
