/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: #f8f9fa;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 1.5rem; font-weight: 800; color: #5c2c91; }
.logo span { color: #ffc400; background: #5c2c91; padding: 2px 8px; border-radius: 4px; }

.nav-links { display: flex; list-style: none; }
.nav-links li a { text-decoration: none; color: #333; margin-left: 20px; font-weight: 600; font-size: 0.9rem; }

/* Hero Section */
.hero { padding: 60px 5%; background: #fff; }
.hero-container { 
    display: flex; 
    align-items: center; 
    gap: 30px; 
    max-width: 1200px; 
    margin: auto; 
}
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
.hero-text h1 span { color: #5c2c91; }
.hero-img { flex: 1; text-align: center; }
.hero-img img { width: 100%; border-radius: 15px; }

.btn { 
    display: inline-block; 
    padding: 12px 30px; 
    background: #5c2c91; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
}

/* Apply Section */
.apply-now { background: #5c2c91; color: #fff; text-align: center; padding: 60px 5%; }
.apply-btn { 
    margin-top: 20px; padding: 15px 40px; 
    background: #ffc400; border: none; 
    font-weight: 800; font-size: 1.1rem; 
    cursor: pointer; border-radius: 5px; 
}

/* About Section */
.about { padding: 60px 5%; background: #fff; }
.about-flex { 
    display: flex; 
    align-items: center; 
    gap: 40px; 
    max-width: 1200px; 
    margin: auto; 
}
.about-img, .about-text { flex: 1; }
.about-img img { width: 100%; border-radius: 15px; }

/* Cards Grid */
.container { max-width: 1200px; margin: auto; }
.center { text-align: center; margin-bottom: 30px; color: #5c2c91; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card { background: #fff; padding: 30px; border-radius: 10px; border-top: 5px solid #ffc400; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

/* Benefits */
.benefits { padding: 60px 5%; background: #fdfdfd; }
.benefit-list { list-style: none; max-width: 800px; margin: auto; }
.benefit-list li { padding: 15px; background: #fff; margin-bottom: 10px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }

/* Footer */
footer { text-align: center; padding: 40px; background: #222; color: #fff; }

/* --- RESPONSIVE DESIGN (FOR MOBILE) --- */
@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 10px; }
    .nav-links li { margin: 5px 10px; }
    .hero-container, .about-flex { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-img, .about-img { order: -1; margin-bottom: 20px; }
}