/* Shared Hero Section Styles */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.85), rgba(var(--primary-dark-rgb), 0.85));
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero .row {
    margin: 0;
    width: 100%;
}

.about-hero .col-lg-8 {
    margin: 0 auto;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: #fff;
    opacity: 0.8;
    margin: 1rem auto;
}

/* Shared Breadcrumb Styles */
.breadcrumb {
    margin-bottom: 1.5rem;
    padding: 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.8;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
    opacity: 0.8;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #fff;
    opacity: 0.5;
    padding: 0 0.5rem;
}

/* Shared Responsive Styles */
@media (max-width: 991px) {
    .about-hero {
        min-height: 80vh;
        padding: 10rem 0 6rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
        padding: 8rem 0 4rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
}