/* ------------------------------
   🌟 Common Hero Section
--------------------------------*/
.page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    /* Optional overlay color */
    /* background-color: rgba(15, 36, 83, 0.7); */
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 5rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 30%;
}

/* ------------------------------
   🌟 Common Content Section
--------------------------------*/
.page-section {
    padding: 80px 0;
    /* background-color: #f8f9fa; */
}

.page-section h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0f2453;
}

.page-section p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #333;
}

/* ------------------------------
   🌟 Responsive Adjustments
--------------------------------*/
/* Tablet */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 3.2rem;
        margin-top: 60vh;
        /* SAME */
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
        margin-top: 60vh;
        /* SAME */
    }

    .page-section {
        padding: 50px 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
        margin-top: 60vh;
        /* SAME */
    }
}