/* ===== MAIN CONTAINER ===== */
.container{
    max-width:90vw;
    margin:0px auto;
}
/* ===== HERO SECTION ===== */ 
.hero{ 
    height:8vw; 
    display:flex; 
    align-items:center; 
    justify-content:center; text-align:center; 
} 
.hero h1{ 
    background:rgba(0,0,0,0.6); 
    color:var(--white); 
    padding:18px 30px; 
    border-radius:var(--radius-md); 
}
    

/* ===== COURSE CARD STYLE (Matches Your UI) ===== */
.course-wrapper {
    display:grid;
    grid-template-columns: 1fr 2fr;
    gap:25px;
}
.website-wrapper{
    display:grid;
    grid-template-columns: 0.9fr 1.5fr 0.6fr;
    gap:8px;
}

.course-info, .website-info{
    background:var(--white);
    padding:25px;
    border-radius:12px;
    box-shadow: var(--shadow-sm);
    font-size: 12px;
    line-height: 1.8;
}

.course-info i, .website-info i{
    color: var(--primary);
    width: 20px;
}
.course-info h4, .website-info h4{
    color: var(--primary);
    margin-top: 0;
}

.course-info .info-item, .website-info .info-item{
    margin-bottom: 4px;
}

.second .info-item{
    margin-top: 20px;
    font-size: 12px;
}
/* REGISTER BUTTON */
.btn{
    display:block;
    text-align:center;
    background:var(--primary);
    color:white;
    padding:8px;
    border-radius:8px;
    text-decoration:none;
    margin-top:20px;
    font-weight:bold;
    cursor: pointer;
    border: none;
}

/* RIGHT SIDE */
.learning-area{
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

.learning-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap:8px;
}

/* MINI COURSE CARDS */
.area-card{
    background:#fafafa;
    padding:0px 10px;
    border-radius:10px;
    transition:0.3s;
    border:1px solid #eee;
}

.area-card:hover{
    transform:translateY(-5px);
}

.area-card h5{
    margin-top:6px;
    color:var(--primary);
    margin-bottom:8px;
}

.area-card i{
    color:var(--accent);
    margin-right:6px;
}

.sub{
    font-size:12px;
    margin:4px 15px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
    .course-wrapper, .website-wrapper{
        grid-template-columns:1fr;
    }

    .hero{
        height:220px;
    }
}

</style>