* {    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero-section {
    background: linear-gradient(135deg, rgba(0, 27, 122, 0.75) 0%, rgba(42, 127, 166, 0.75) 100%), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-section .subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-section .description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge-custom {
    background: white;
    color: #001b7a;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    color: #001b7a;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.intro-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.intro-section h2 {
    color: #001b7a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 4px solid #001b7a;
}
.sub-text{
    margin-top: 25px; font-weight: 600; color: #0052cc;
}
.section-text {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}
.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0052cc;
    font-weight: bold;
    font-size: 1.3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #0052cc;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.info-card h3 {
    color: #001b7a;
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-decoration: underline;
}

.info-card p {
    color: #666;
}

.courses-section {
    margin-top: 60px;
}

.course-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.course-category h3 {
    color: #001b7a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #0052cc;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.course-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #0052cc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,82,204,0.15);
    background: #e8f4ff;
}

.course-item h4 {
    color: #001b7a;
    font-size: 1rem;
    font-weight: 600;
}


        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 1.8rem;
            }

            .hero-section .subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .badges {
                flex-direction: column;
                align-items: center;
            }

            .courses-grid {
                grid-template-columns: 1fr;
            }
        }