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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f5f7fb;
    color: #1f2937;
}

/* Navbar */
.main-navbar {
    background: #072f5f;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 22px;
    line-height: 1.2;
}

.navbar-brand span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #facc15;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #072f5f, #0b5ed7);
    color: white;
    padding: 90px 0;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
    color: #e5e7eb;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Info Card */
.info-card {
    background: white;
    color: #1f2937;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.info-card h4 {
    color: #072f5f;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    color: #4b5563;
    line-height: 1.7;
}

.info-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.info-card ul li {
    margin-bottom: 8px;
}

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

.section-title {
    font-weight: 800;
    color: #072f5f;
    margin-bottom: 15px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.section-subtitle {
    color: #6b7280;
    max-width: 650px;
    margin: 0 auto;
}

/* Feature Box */
.feature-box {
    background: white;
    padding: 25px;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #0d6efd;
}

.feature-box h5 {
    color: #072f5f;
    font-weight: 700;
}

.feature-box p {
    color: #6b7280;
    margin-bottom: 0;
}

/* Programs */
.programs-section {
    background: #eef4ff;
    padding: 80px 0;
}

.program-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.program-card:hover {
    transform: translateY(-6px);
}

.program-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #072f5f;
    color: #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.program-card h5 {
    color: #072f5f;
    font-weight: 700;
}

.program-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

.program-card.text-start {
    text-align: left;
}

.program-card.text-start .program-icon {
    margin-left: 0;
    margin-right: 0;
}

.program-list {
    margin-top: 15px;
    padding-left: 18px;
}

.program-list li {
    margin-bottom: 8px;
    color: #374151;
    font-size: 15px;
}

.program-list li::marker {
    color: #0d6efd;
}

/* Steps */
.step-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #ffc107;
    color: #111827;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 22px;
}

.step-box h5 {
    color: #072f5f;
    font-weight: 700;
}

.step-box p {
    color: #6b7280;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #061f3d;
    color: white;
    padding: 45px 0;
}

.footer h5 {
    font-weight: 700;
    color: #facc15;
}

.footer p {
    color: #d1d5db;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
}

.footer-links a:hover {
    color: #facc15;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .section-padding,
    .programs-section {
        padding: 55px 0;
    }

    .main-navbar .btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}