* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.main_body {
    background-color: #f2f2f2;
}

/* =========================
   HEADING
========================= */
.heading {
    width: 90%;
    margin: 20px auto;
    text-align: center;
}

.heading h1 {
    font-size: 50px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}

/* .heading h1::after {
    content: "";
    width: 100%;
    height: 4px;
    background: #4caf50;
    display: block;
    margin-top: 8px;
} */

.heading p {
    font-size: 25px;
    color: #666;
    margin-bottom: 35px;
}

/* =========================
   ABOUT SECTION
========================= */
.container {
    width: 100%;
    padding: 10px 20px;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* IMAGE (ADVANCED) */
.about-image {
    flex: 1;
    perspective: 800px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.about-image:hover img {
    transform: scale(1.04);
}

/* CONTENT */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #333;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

/* =========================
   AIM SECTION
========================= */
.container2 {
    padding: 20px;
    background-color: #f0f1f2;
    margin: 40px auto;
}

.container2 h1 {
    color: #f5de12;
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.aim {
    list-style: none;
    margin: 0 12%;
    padding: 0;
}

.about_li {
    padding: 10px;
}

.about_li:nth-child(even) {
    background: #fff;
    border-radius: 5px;
}

.about_li:nth-child(odd) {
    color: #fff;
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .heading h1 {
        font-size: 36px;
    }

    .heading p {
        font-size: 17px;
    }

    .about {
        flex-direction: column;
    }

    .about-content p {
        font-size: 16px;
    }

    .container2 {
        margin: 0;
    }
}
