* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
}

.edu-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
}

main {
    padding-top: 90px;
}

.edu-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.edu-logo__img {
    height: 45px;
    width: auto;
}

.edu-nav-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.edu-nav {
    display: flex;
    list-style: none;
    align-items: center;
}

.edu-nav__item {
    margin: 0 20px;
    position: relative;
}

.edu-nav__link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 8px;
    transition: color 0.3s ease;
}

.edu-nav__link:hover,
.edu-nav__item--active .edu-nav__link {
    color: #6659E1;
}

.edu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 15px 0;
    z-index: 100;
}

.edu-nav__item:hover .edu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.edu-dropdown__item {
    display: block;
    padding: 12px 25px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.edu-dropdown__item:hover {
    background-color: #f1f3f5;
    color: #6659E1;
    padding-left: 30px;
}

.edu-subdropdown {
    position: relative;
}

.edu-subdropdown__menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 240px;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 15px 0;
}

.edu-subdropdown:hover .edu-subdropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.edu-apply__btn {
    background: linear-gradient(135deg, #6659E1, #8e7aff);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 89, 225, 0.3);
}

.edu-apply__btn:hover {
    background: linear-gradient(135deg, #8e7aff, #6659E1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 89, 225, 0.4);
}

.edu-apply__btn.large {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    margin-top: 2rem;
}

.edu-navbar__toggler {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
    padding: 5px;
}

.edu-navbar__toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(44, 62, 80, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.edu-nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #2c3e50;
    cursor: pointer;
    z-index: 1003;
}

.hero {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.university-info {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.container {
    display: grid;
    gap: 2rem;
}

.info-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.info-section:hover {
    transform: translateY(-5px);
}

.info-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section p {
    font-size: 1rem;
    color: #5c6b7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.financial-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: #5c6b7a;
}

.financial-table th,
.financial-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    text-align: left;
}

.financial-table th {
    background: #f1f3f5;
    color: #2c3e50;
    font-weight: 600;
}

.financial-table tr:last-child td {
    border-bottom: none;
}

.apply-section {
    text-align: center;
    margin-top: 3rem;
}

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    text-align: center;
    position: relative;
}

.loading-spinner i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.loading-spinner p {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 2px;
}

.loading-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 4px;
    animation: dots 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes dots {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links a {
    color: #d1d8e0;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .hero-overlay h1 { font-size: 2.5rem; }
    .hero-overlay p { font-size: 1.2rem; }
    .info-section h2 { font-size: 1.6rem; }
}

@media (max-width: 576px) {
    .edu-navbar__toggler { display: block; z-index: 1002; }
    .edu-nav-close { display: none; }
    .edu-nav--open .edu-nav-close { display: flex !important; }
    .edu-nav-container {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #ffffff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        overflow-y: auto;
        z-index: 1001;
    }
    .edu-nav--open .edu-nav-container { display: block; }
    .edu-nav { flex-direction: column; align-items: flex-start; }
    .edu-nav__item { margin: 0.8rem 0; width: 100%; }
    .edu-nav__link { font-size: 18px; padding: 12px 15px; width: 100%; }
    .edu-nav__item:has(.edu-dropdown) .edu-nav__link::after {
        content: '▼';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
    }
    .edu-nav__item--open .edu-nav__link::after { transform: translateY(-50%) rotate(180deg); }
    .edu-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: #f1f3f5;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-top: 5px;
    }
    .edu-nav__item--open .edu-dropdown { display: block; }
    .edu-subdropdown .edu-dropdown__item::after {
        content: '▶';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
    }
    .edu-subdropdown--open .edu-dropdown__item::after { transform: translateY(-50%) rotate(90deg); }
    .edu-subdropdown__menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: #e9ecef;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-left: 15px;
    }
    .edu-subdropdown--open .edu-subdropdown__menu { display: block; }
    .edu-apply { display: none; }
    .edu-nav--open .edu-apply { display: flex; width: 100%; justify-content: center; margin-top: 1.5rem; }
    .hero { height: 400px; }
    .hero-overlay h1 { font-size: 2rem; }
    .hero-overlay p { font-size: 1rem; }
    .info-section { padding: 1.5rem; }
    .info-section h2 { font-size: 1.4rem; }
    .financial-table th, .financial-table td { padding: 0.8rem; font-size: 0.9rem; }
    .edu-apply__btn.large { padding: 12px 30px; font-size: 16px; }
}