.about-section {
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
}

.about-content {
    padding: 0 60px;
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 60px;
}

.about-image-container {
    position: relative;
}

.about-info-img {
    background: #000;
    width: 19rem;
    height: 22rem;
}

.about-info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    text-align: left;
    max-width: 1000px;
}

.text-container h3, .text-container h4 {
    font-size: 25px;
    font-weight: 500;
}

.text-container h3 {
    margin-top: 10px;
}

.text-container p {
    font-size: 20px;
    line-height: 35px;
}

.about-mission-vision {
    margin-top: 2rem;
}

.about-mission-vision h2 {
    padding-top: 30px;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 600;
}

.about-mission-vision p {
    font-size: 20px;
    line-height: 35px;
    padding: 0 60px;
}

.about-offer-container {
    margin-top: 6rem;
}

.about-offer-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-offer-container {
    margin-top: 6rem;
}

.about-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.about-offer-card {
    width: 300px;
    height: auto;
    padding: 20px;
    border: 2px solid #d6b1d3;
    border-radius: 10px;
    background-color: #f8f3f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-offer-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.about-offer-card h3 {
    font-size: 25px;
    font-weight: 500;
    color: #7a2b87;
    margin-bottom: 1rem;
}

.about-offer-card p {
    font-size: 1rem;
    line-height: 25px;
    color: #555;
}


.top-right {
    position: absolute;
    top: -20px;
    right: -20px;
    color: #000;
    background-color: #fcc305;
    width: 200px;
    height: 200px;
    clip-path: polygon(0 7%, 100% 0, 93% 100%, 93% 7%);

}

.bottom-left {
    position: absolute;
    bottom: -20px;
    left: -20px;
    color: #000;
    background-color: #ff3d00;
    width: 200px;
    height: 200px;
    clip-path: polygon(6% 0, 7% 93%, 99% 94%, 0 100%);

}

.award-certificate-container {
    margin-top: 6rem;
}

.award-certificate-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.awards-container {
    display: grid;
    justify-items: center;
    align-content: center;
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
    /* 3 items in a row for large screens */
    gap: 50px;
}

.award-card {
    width: 250px;
    height: 300px;
    padding: 10px;
    border: 2px solid #d6b1d3;
    border-radius: 10px;
    background-color: #f8f3f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.award-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.map {
    display: flex;
    margin-top: 50px;
    width: 100%;
    height: 600px;
}

.map img {
    width: 100%;
    /* border-radius: 20px; */
}

.map iframe {
    width: 100%;
    /* border-radius: 20px; */
}

@media (max-width: 850px) {
    .about-content h1 {
        font-size: 2.2rem;
    }

    .about-content {
        padding: 0 5px;
    }

    .about-content p {
        font-size: 18px;
        line-height: 30px;
    }

    .about-info {
        flex-direction: column;
        padding: 0 20px;
    }

    .text-container p {
        font-size: 18px;
        line-height: 30px;
    }

    .about-mission-vision p {
        font-size: 18px;
        padding: 0 20px;
        line-height: 30px;
    }

    .awards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .map {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .about-content h1 {
        font-size: 1.9rem;
    }

    .about-content {
        padding: 0 10px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 25px;
    }

    .about-image-container {
        position: relative;
    }

    .about-info-img {
        background: #000;
        width: 15rem;
        height: 20rem;
    }

    .about-info {
        flex-direction: column;
        padding: 0 5px;
    }

    .text-container h3 {
        font-size: 23px;
    }

    .text-container h4 {
        font-size: 18px;
    }

    .text-container p {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .about-mission-vision p {
        font-size: 16px;
        padding: 0;
    }

    .awards-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }

    .award-certificate-container {
        margin-top: 6rem;
    }

    .award-certificate-container h2 {
        font-size: 28px;
    }

    .map {
        height: 300px;
    }
}