/* Append to index.css or add to a new specific file if needed, but easier to append */
/* --- Subpage Specific Styles --- */
.page-hero-section {
    position: relative;
    padding: 10rem 2rem 5rem;
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-dark));
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.page-hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
}

.intervention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.intervention-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.intervention-item:hover {
    background: rgba(205, 164, 52, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.intervention-item h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.intervention-item h3::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent-color);
}

.intervention-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.subpage-content {
    background: var(--bg-dark);
    padding: 5rem 2rem;
}

.breadcrumb {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}
.breadcrumb a {
    color: var(--text-muted);
}
.breadcrumb a:hover {
    color: var(--accent-color);
}
