/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #f3f4f6;
    background: #263238;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* Higher Education Page Layout */
#higheredu-page {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}
.container h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #42a5f5;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1s;
}
.intro-quote {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    color: #90caf9;
    margin-bottom: 2rem;
    animation: fadeInDown 1.2s;
}

/* Section Box Styles */
.section-box {
    background: #37474f;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 8px solid #42a5f5;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}
.section-box h2 {
    font-size: 1.8rem;
    color: #42a5f5;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.section-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e1e3e8;
}
.highlighted-text {
    display: inline-block;
    background: #4caf50;
    color: #ffffff;
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    font-weight: bold;
}
.region-highlight {
    background: #ff7043;
    color: #ffffff;
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    font-weight: bold;
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
