.why-choose-us {
    display: none; /* REMOVER  */
    width: 100%;
    padding: 3rem 0;
    font-family: "Josefin Sans", sans-serif;
}

.container {
    padding: 3rem;
    margin: 0 auto;
   
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: start;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.2;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card {
    background-color: #1a1a1a;
    color: white;
    padding: 1.75rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.35rem 0.75rem rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 1.25rem;
    font-size: 2rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: bold;
    line-height: 1.3;
}

.card-text {
    font-size: 1.125rem;
    line-height: 1.5;
    opacity: 0.9;
}

@media (max-width: 48rem) {
    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 30rem) {
    .section-title {
        font-size: 1.75rem;
    }
    .card {
        padding: 1.25rem;
    }
}