/* Prevent color change for email links when clicked or visited */
a[href^="mailto"]:visited,
a[href^="mailto"]:active {
    color: inherit;
    text-decoration: underline;
}
/* Prevent color change for links when clicked (visited/active) */
a:visited,
a:active {
    color: inherit;
    text-decoration: underline;
}
.admissions-desc {
    margin-bottom: 10px;
    margin-top: 10px;
}
.admissions-main *:not(a) {
    user-select: none;
    cursor: default;
}
/* Enhanced Admissions Page Styles - Neutral Background with Theme Accents */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #F9F9F9; /* Very light neutral background */
    color: #333333; /* Dark gray text for readability */
}

.admissions-main {
    width: 800px;
    margin: 80px auto 50px auto;
    background: #FFFFFF; /* Clean white container */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(122, 75, 45, 0.1);
    padding: 24px 30px;
    transition: box-shadow 0.3s ease;
}
.admissions-main:hover {
    box-shadow: 0 12px 36px rgba(234, 84, 60, 0.15); /* subtle red glow on hover */
}

h1.admissions-title {
    color: #7A4B2D; /* Accent Brown */
    font-size: 2.8rem;
    text-align: center;
    margin: 12px 0 12px 0;
    letter-spacing: 1.2px;
    font-weight: 700;
}

h2.admissions-section-title {
    color: #EA543C; /* Secondary Red */
    font-size: 1.8rem;
    margin-top: 24px;
    border-bottom: 3px solid #F7D36A; /* Primary Light Yellow */
    padding-bottom: 12px;
    font-weight: 600;
}

h3.admissions-subtitle {
    color: #7A4B2D; /* Accent Brown */
    font-size: 1.4rem;
    margin: 16px 0 4px 0;
    font-weight: 500;
}

.admissions-list {
    margin: 8px 0;
    color: #444444; /* Dark gray for body text */
    font-size: 1.1rem;
    line-height: 1.6;
}

.admissions-list-item {
    transition: background 0.2s ease;
    border-radius: 6px;
    padding: 2px 8px;
}
.admissions-list-item:hover {
    background: #F7F1D1; /* Very light yellow highlight */
}

.admissions-note {
    font-size: 1em;
    color: #7A4B2D; /* Accent Brown */
    margin: 2px 0;
    background: #FFF8E1; /* Soft yellow background */
    padding: 2px 14px 10px 14px;
    border-radius: 6px;
    font-style: italic;
}
