.about-section {
    width: 100%;
    color: #000;
    background-color: #fff;
}

.about-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: auto;
    max-height: 600px;
    /* Limit height on large screens */
    display: block;
    object-fit: cover;
    object-position: center;
    border: none;
}


.about-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-content {
    margin: 0 auto;
    padding: 50px 0px;
}

.about-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-banner img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 1.1rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .about-banner img {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .about-banner img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {

    .about-content h2 {
        font-size: 1rem;
    }

    .about-content p {
        font-size: 0.85rem;
    }
}