.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 20px;
    min-height: 100vh;
    width: 100%;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
}

.feature-left {
    flex-direction: row;
}

.feature-right {
    flex-direction: row-reverse;
}

.icon-container {
    flex: 1;
    text-align: center;
}

.icon {
    max-width: 100%;
    height: auto;
    width: 350px;
    border-radius: 5%;
}

.icon1 {
    max-width: 40%;
    height: auto;
    width: 350px;
    border-radius: 5%;
}

.text-container {
    flex: 1;
    padding: 10px;
    text-align: left;
    margin-top: 50px;
}

.text-container h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.text-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Media Query for smaller screens */
@media screen and (max-width: 768px) {
    .about-section {
        padding: 40px 15px;
        min-height: auto; /* Allow the section to grow */
    }

    .feature {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .text-container {
        margin-top: 20px;
        text-align: center;
    }

    .text-container h2 {
        font-size: 24px;
    }

    .text-container p {
        font-size: 14px;
    }

    .icon, .icon1 {
        width: 80%;
    }

    .icon-container {
        padding: 15px;
    }
}

/* Media Query for very small screens */
@media screen and (max-width: 480px) {
    .text-container h2 {
        font-size: 22px;
    }

    .text-container p {
        font-size: 13px;
        line-height: 1.4;
    }

    .icon, .icon1 {
        width: 100%;
    }

    .about-section {
        padding: 30px 10px;
        gap: 15px;
        min-height: auto; /* Let the section grow to fit content */
    }

    .text-container {
        padding: 10px;
    }
}