:root {
    --color-brand: #059669;
    --color-cta: #FF6B35;
    --text-muted: #666;
    --border: #ddd;
}

.business-hero {
    background-color: var(--color-brand);
    color: #fff;
    padding: 80px 24px;
    text-align: center;
}

.business-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.business-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.business-hero p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.business-hero .btn-cta {
    display: inline-block;
    background-color: var(--color-cta);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.business-hero .btn-cta:hover {
    background-color: #e85d2a;
}

.business-indicators {
    background-color: #f8f8f8;
    padding: 60px 24px;
}

.indicators-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.indicator-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
}

.indicator-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 8px;
}

.indicator-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.business-articles {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-content {
    padding: 24px;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-content h3 a {
    color: #111;
    text-decoration: none;
}

.article-content h3 a:hover {
    color: var(--color-brand);
}

.article-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.article-content time {
    font-size: 0.875rem;
    color: #999;
}

.no-articles {
    text-align: center;
    padding: 60px 24px;
    background: #f8f8f8;
    border-radius: 8px;
}

.no-articles p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.business-sectors {
    padding: 80px 24px;
    background-color: #f8f8f8;
}

.business-sectors h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #111;
}

.business-sectors > p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.table-container {
    max-width: 1200px;
    margin: 0 auto 24px;
    overflow-x: auto;
}

.business-sectors table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.business-sectors th {
    background-color: var(--color-brand);
    color: #fff;
    font-weight: 700;
    padding: 16px 20px;
    text-align: left;
}

.business-sectors td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    color: #111;
}

.business-sectors tr:last-child td {
    border-bottom: none;
}

.business-sectors tr:hover td {
    background-color: #f9f9f9;
}

.disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.business-strategies {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.business-strategies h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #111;
}

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

.strategy-card {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.strategy-card svg {
    color: var(--color-brand);
    margin-bottom: 20px;
}

.strategy-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.strategy-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .business-hero {
        padding: 60px 20px;
    }
    
    .business-hero h1 {
        font-size: 2rem;
    }
    
    .business-hero p {
        font-size: 1rem;
    }
    
    .business-indicators,
    .business-articles,
    .business-sectors,
    .business-strategies {
        padding: 60px 20px;
    }
    
    .section-header h2,
    .business-sectors h2,
    .business-strategies h2 {
        font-size: 1.75rem;
    }
    
    .indicator-number {
        font-size: 2.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .business-sectors th,
    .business-sectors td {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .business-hero h1 {
        font-size: 1.75rem;
    }
    
    .indicators-container {
        grid-template-columns: 1fr;
    }
    
    .indicator-number {
        font-size: 2rem;
    }
}