/* 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 Text */
.section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

/* Support Contact Info */
.support-contact {
    background: #f4f8fc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.support-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2ba2ec;
    margin-bottom: 10px;
}

.support-text {
    font-size: 1.1rem;
    color: #333;
}

/* Email Styling */
.support-text a {
    color: #2ba2ec;
    text-decoration: none;
    font-weight: bold;
}

.support-text a:hover {
    text-decoration: underline;
}

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

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

    .support-contact {
        padding: 15px;
    }
}
