body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fb;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Page Title Section */
.page-title-area {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}
.page-title {
    position: relative;
    z-index: 2;
}
.page-title h2 {
    font-size: 3rem;
    font-weight: 700;
}
.breadcrumb-list {
    font-size: 1rem;
}
.breadcrumb-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb-list ul li {
    display: inline-block;
    margin-right: 5px;
}
.breadcrumb-list ul li::after {
    content: "/";
    margin-left: 5px;
}
.breadcrumb-list ul li:last-child::after {
    content: "";
}

/* Highlight Box */
.highlight-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin: 3rem auto;
    max-width: 1100px;
    text-align: center;
}
.highlight-box h3 {
    font-size: 2rem;
    color: #0a47b5;
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}
.benefits-col {
    flex: 1;
    min-width: 250px;
}
.benefits-col h4 {
    color: #1a3ea5;
    margin-bottom: 1rem;
}
.benefits-col ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

/* Cards Section */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem auto;
    max-width: 1100px;
}
.card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1 1 200px;
}
.card h4 {
    color: #0a47b5;
    margin-bottom: 0.5rem;
}
.card a {
    color: #0a47b5;
    font-weight: bold;
    text-decoration: none;
}

/* Info + Apply Sections */
.info-box, .apply-box {
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.apply-box {
    background: #e3edff;
    border-left: 5px solid #1a3ea5;
}
.apply-box a {
    color: #1a3ea5;
    text-decoration: underline;
}

/* Footer */
.footer-area {
    background-color: #101820;
    padding-top: 3rem;
}
.footer-top-single h5 {
    margin-bottom: 5px;
}
.footer-top-single span {
    font-size: 0.9rem;
}
.footer-bottom {
    padding: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-list {
        flex-direction: column;
        align-items: center;
    }
    .card-container {
        flex-direction: column;
        align-items: center;
    }
}
