.double-divs {
    width: 300px;
    margin: 0 auto;
    position: relative;
    background-color: var(--helperColor);
    border-radius: var(--radius-lg) 0px;
    height: fit-content;
    margin-top: var(--space-md);

}

.details-div {
    width: 90%;
    background-color: var(--lightHelper);
    box-shadow: var(--shadow-md);
    padding: var(--space-md);
    transform: translate(10px, 15px);
    border-radius: 20px 0px;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: start;
    gap: var(--space-md);
}

.why-us-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    justify-content: center;
    align-items: center;
}

.why-us-cards h3,
.why-us-cards h4 {
    width: 100%;
    text-align: center;
    color: var(--primaryColor);

}

.why-us-cards ul {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    color: var(--primaryColor);
    text-align: start;
}


.why-us-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
}

@media (max-width:768px) {
    .double-divs {
        width: 350px;
        margin: 0 auto;
    }
}

@media (max-width:425px) {
    .double-divs {
        width: 90%;
        margin: 0 auto;
    }
}



@media (max-width:1440px) {
    .why-us-cards-container {
        padding-inline: var(--space-md);
    }
}