* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* About us section */
.about-us-section {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.about-us-section h3 {
    font-size: 2.4rem;
    font-weight: 500;
}

.about-us-section .row {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.row .img-container-about {
    width: 28%;
    min-width: 355px;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    background-color: var(--primary-light-color);
    border-top-left-radius: 8rem;
    border-top-right-radius: 4rem;
    border-bottom-left-radius: 4rem;
    border-bottom-right-radius: 8rem;
}

.img-container-about img {
    width: 32rem;
    min-width: 512px;
}

.row .info-about-us {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 507px;
}

.info-about-us h4 {
    font-size: 4.4rem;
    font-weight: 500;
    color: var(--primary-light-color);
}

.info-about-us p {
    color: rgba(0, 0, 0, 0.6);
}

.info-about-us p span {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-color);
}

.info-about-us button {
    padding: .6rem 1.6rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    margin-top: 2rem;
    cursor: pointer;
}

.info-about-us button:hover {
    background-color: var(--primary-light-color);
}

/* Media Queries for Small Screens */
@media (max-width: 657px) {
    .row .img-container-about {
        min-width: unset;
        width: 297px;
    }

    .about-us-section .row {

        justify-content: flex-start;

    }

    .img-container-about img {
        width: 450px;
        min-width: unset;
    }

    .about-us-section .row {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 30px;
        margin: 10px;
    }

    .info-about-us h4 {
        font-size: 50px;
        margin: 10px 0px;
    }

    .about-us-section {

        gap: 0rem;

    }
}

@media (max-width: 550px) {
    .row .img-container-about {
        min-width: unset;
        width: 200px;
    }

    .img-container-about img {
        width: 300px;
        min-width: unset;
    }

    .row .info-about-us {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        min-width: unset;
    }
}

@media (max-width: 400px) {
    .img-container-about img {
        width: 226px;
        min-width: unset;
    }
}

@media (max-width: 316px) {
    .row .img-container-about {
        min-width: unset;
        width: 169px;
    }

    .img-container-about img {
        width: 196px;
        min-width: unset;
    }
}