/* Page Hero Section */
.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Default background, can be overridden by inline styles */
    background: url('assets/hero_bg.png') no-repeat center center/cover;
    opacity: 0.5;
    z-index: -1;
}

.page-hero-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
}

.page-hero-content {
    text-align: center;
    z-index: 1;
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Page Content */
.page-content {
    padding: 5rem 0;
}

.sector-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sector-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Page Media Queries */
@media (max-width: 992px) {
    .sector-details {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
}
