body { 
    font-family: 'Inter', 'Roboto', Arial, sans-serif; 
    background: #f9fafc; 
    margin: 0; 
    color: #222; 
}
header { 
    background-color: #0d47a1; 
    color: white; 
    padding: 20px 15px; 
    text-align: justify; 
            
}
a {
    text-decoration: none;
}
          
.header-actions {
    margin: 22px 0 0 10px;
}
.header-actions .btn-primary {
    background: #1ec1fe;
    color: #fff;
    padding: 13px 35px;
    border: none;
    border-radius: 26px;
    font-size: 1.11rem;
    font-weight: 700;
    margin-right: 18px;
    cursor: pointer;
    transition: background 0.2s;
}
.header-actions .btn-primary:hover {
    background: #057abd;
}
.intro {
    padding-left: 8%;
    padding-right: 40%;
}

h1{
    font-weight: bolder;
}

h1, h2 { 
    color: white; 
}
.intro-p { 
    margin: 20px 0; 
    font-size: 1.1em; 
    line-height: 1.6; 
    color: #e3f2fd;
}
.rating { 
    font-weight: bold; 
    color: gold; 
}
.btn { 
    background-color: #0d47a1; 
    color: #fff; 
    text-decoration: none; 
    padding: 10px 22px; 
    border-radius: 4px; 
    font-weight: bold; 
    display: inline-block; 
    margin: 10px 5px 24px; 
}
.main-container {
    max-width: 1220px;
    margin: 1.5rem auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 20px 0 rgba(20,70,120,0.08);
    padding: 2.7rem 2.3rem 2.5rem 2.3rem;
}
.stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.7rem;
    padding: 1.1rem 0.5rem;
    background: #f6fbff;
    border-radius: 8px;
}
.stat-box {
    flex: 1 1 22%;
    background: #e3f2fd;
    margin: 0 7px;
    border-radius: 8px;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.03rem;
}
.stat-box span {
    display: block;
    font-size: 1.36rem;
    font-weight: bold;
    color: #1291d2;
}
.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    margin: 1.5rem 0 2.1rem 0;
}
.highlights-list {
    flex: 1 1 320px;
}
.highlights-list h3 {
    font-size: 1.1rem;
    color: #1769aa;
    margin-bottom: 0.5rem;
}
.highlights-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

ul{
    font-weight: bolder;
}

li{
    font-weight: 400;
}

.highlights-list li {
    padding: 0.41rem 0;
    border-bottom: 1px solid #e7edf6;
    position: relative;
    padding-left: 1.7rem;
    color: #2b3550;
}
.highlights-list li:before {
    content: "✔";
    color: #17a2b8;
    font-weight: 600;
    position: absolute;
    left: 0;
    font-size: 1.16rem;
}
.curriculum-box {
    margin: 2.2rem 0;
    background: #f6fbff;
    border-radius: 7px;
    padding: 1.5rem;
}
.curriculum-box h2 {
    color: #1565c0;
}
.curriculum-box ul {
    margin-left: 1.4rem;
    color: #203245;
}
.desc {
    margin: 2.1rem 0 2.1rem 0;
    line-height: 1.67;
}
.price-badge {
    display: inline-block;
    margin: 0.4rem 0 1.2rem 0;
    background: #0d47a1;
    color: #fff;
    padding: 0.47rem 1.13rem;
    border-radius: 20px;
    font-size: 1.09rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.testimonial-section {
    background: #e3f2fd;
    margin: 1.7rem 0 2.2rem 0;
    border-radius: 7px;
    padding: 1.4rem 1rem;
}
.testimonial {
    font-style: italic;
    color: #2a415a;
    margin: 0.2rem 0 1rem 0;
}
.alumni {
    font-weight: bold;
    color: #1565c0;
    margin-bottom: 1rem;
}
.contact-box {
    border: 1.6px solid #0d47a1;
    border-radius: 9px;
    padding: 1.2rem 1.4rem;
    margin: 2.1rem 0 1.6rem 0;
    background: #f4f9fd;
}
.contact-box h3 {
    color: #0d47a1;
    margin-top: 0;
}
.contact-details span {
    font-weight: 600;
    color: #1177ce;
}
.enquire-btn {
    background: #1ec1fe;
    color: #fff;
    padding: 13px 34px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1.3rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.enquire-btn:hover {
    background: #0d47a1;
}
.footer {
    margin-top: 3.2rem;
    text-align: center;
    padding: 1.2rem 0 0.6rem 0;
    color: #5b7084;
    font-size: 0.98rem;
    border-top: 1.5px solid #e7edf6;
    letter-spacing: 0.5px;
    background: #f8fafd;
}
@media (max-width: 900px) {
    .main-container { padding: 1.1rem; }
    .stats-row { flex-direction: column; gap: 14px; }
    .stat-box { margin-bottom: 14px; }
    .highlights { flex-direction: column; }
}