/* Page Hero Section (Blue Background) */
.page-hero {
    height: 25vh;
    background-color: #2387d1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    margin-top: 60px;
}

/* Hero Title */
.page-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Sections Styling */
.section-content {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

/* Container */
.section-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2ba2ec;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2ba2ec;
}

/* Section Text */
.section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

/* List Styling */
.section-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.section-list li {
    font-size: 1.1rem;
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}

/* Custom Bullet Points */
.section-list li::before {
    content: "✔";
    color: #2ba2ec;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-hero {
        height: 30vh;
    }

    .section-container {
        padding: 0 15px;
    }

    .section-list {
        text-align: center;
    }
}
