/* General Page Header Styles */
.page-header {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 420px;
    padding-top: 85px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.page-header_content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.page-header_title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.4;
    margin: 0;
}
.breadcrumbs {
    font-size: 14px;
    color: #ffffff;
}
.breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
}
.breadcrumbs a:hover {
    opacity: 1;
}
.breadcrumbs .divider {
    margin: 0 10px;
    opacity: 0.7;
}

/* Responsive styles for page header */
@media (max-width: 768px) {
    .page-header_content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }
    .page-header_title {
        font-size: 36px;
    }
    .page-header {
        min-height: 300px;
    }
}

/* Card styles for content sections */
.feature-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0.25rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.feature-card .icon {
    font-size: 3rem;
    color: #00aeef;
    margin-bottom: 1rem;
}
.feature-card h4 {
    color: #1f4e7a;
    font-weight: 500;
}
.feature-card p {
    color: #6c757d;
}

/* Stats Section Styles */
.stats-section {
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}
.stat-box {
    padding: 10px;
}
.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #00aeef;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-transform: uppercase;
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}