* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #1a3a6c;
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.6rem;
}

.logo span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd700;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    color: #1a3a6c;
}

.intro-section {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.intro-section h3 {
    color: #1a3a6c;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 8px;
}

.intro-section p {
    margin-bottom: 15px;
}

.education-levels {
    margin-bottom: 40px;
}

.level-title {
    color: #1a3a6c;
    text-align: center;
    margin: 30px 0 20px;
    position: relative;
}

.level-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffd700;
}

.level-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.level-card {
    width: 300px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.level-card:hover {
    transform: translateY(-5px);
}

.level-card-image {
    height: 180px;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.level-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.level-card-content {
    padding: 20px;
}

.level-card-content h4 {
    color: #1a3a6c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.level-card-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.level-features {
    list-style-type: none;
    margin-bottom: 15px;
}

.level-features li {
    font-size: 0.9rem;
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.level-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #1a3a6c;
}

.level-card-content .btn {
    display: inline-block;
    background-color: #1a3a6c;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.level-card-content .btn:hover {
    background-color: #12284d;
}

.specialties-section {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.specialties-section h3 {
    color: #1a3a6c;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.specialties-section h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffd700;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.specialty {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #1a3a6c;
}

.specialty h4 {
    color: #1a3a6c;
    margin-bottom: 10px;
}

.admission-section {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admission-section h3 {
    color: #1a3a6c;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.admission-section h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffd700;
}

.admission-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: #1a3a6c;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.step i {
    font-size: 30px;
    color: #1a3a6c;
    margin-bottom: 15px;
}

.step h4 {
    margin-bottom: 10px;
    color: #1a3a6c;
}

.testimonials {
    background-color: #1a3a6c;
    color: white;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.testimonials h3 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.testimonials h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffd700;
}

.testimonial-quotes {
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quote-author {
    margin-top: 20px;
    font-weight: bold;
    font-style: normal;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 2px solid #1a3a6c;
}

.cta-section h3 {
    color: #1a3a6c;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #1a3a6c;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #12284d;
}

footer {
    background-color: #1a3a6c;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .level-cards {
        justify-content: center;
    }
}