.heroo-section {
    background-image: url(../../uploads/college.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.heroo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.heroo-section h1 {
    font-size: 3rem;
    font-weight: bold;
    z-index: 2;
    position: relative;
}

@media (max-width: 900px) {
    .heroo-section h1 {
        font-size: 2.5rem;
    }
}

.about-section,
.containers {
    padding: 20px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #4A148C;
}

.about-section p {
    text-align: justify;
    font-size: 18px;
    color: #333;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

.divider {
    width: 100%;
    height: 4px;
    background: #FFD600;
    margin: 10px auto;
}
