* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #0A192F;
    color: #CCD6F6;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #112240;
}

.navbar {
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #E6F1FF;
    font-size: 1.8rem;
}

.accent {
    color: #E6F1FF;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: #CCD6F6;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #E6F1FF;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    color: #E6F1FF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    color: #E6F1FF;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #E6F1FF;
    color: #0A192F;
}

.btn-primary:hover {
    background-color: #52d1b8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #E6F1FF;
    border: 2px solid #E6F1FF;
}

.btn-secondary:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-dark {
    background-color: #112240;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #E6F1FF;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #E6F1FF;
}

/* About Section */
.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #E6F1FF;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #8892B0;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: #112240;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #1E2A3A;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: #E6F1FF;
}

.program-card h3 {
    color: #E6F1FF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.program-card ul {
    list-style: none;
}

.program-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #1E2A3A;
    color: #CCD6F6;
}

.program-card li:last-child {
    border-bottom: none;
}

/* Research Grid */
.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.research-item {
    background-color: #112240;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #1E2A3A;
    transition: transform 0.3s ease;
}

.research-item:hover {
    transform: translateY(-5px);
    border-color: #E6F1FF;
}

.research-item h3 {
    color: #E6F1FF;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.research-item p {
    color: #8892B0;
}

/* Admissions */
.admissions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.admissions-text h3 {
    color: #E6F1FF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.admissions-text p {
    margin-bottom: 1.5rem;
    color: #CCD6F6;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    color: #E6F1FF;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #CCD6F6;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #1E2A3A;
    border-radius: 4px;
    background-color: #112240;
    color: #CCD6F6;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffffff;
}

/* Footer */
.footer {
    background-color: #0A192F;
    padding: 40px 0 20px;
    border-top: 1px solid #112240;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #E6F1FF;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #CCD6F6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #112240;
    color: #8892B0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        flex-direction: column;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}