.why-choose-us {
    padding: 80px 0;
    background: #ffffff;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Columna de texto */
.why-text-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-text-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-learn-more {
    display: inline-block;
    background: #0EA5E9;
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.btn-learn-more:hover {
    background: #0284C7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}

/* Columna de imagen */
.why-image-content {
    position: relative;
}

.why-image-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


.features-section {
    padding: 60px 0;
    background: #F8FAFC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    padding: 10px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0EA5E9;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}


@media (max-width: 968px) {
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-text-content {
        order: 2;
        text-align: center;
    }

    .why-image-content {
        order: 1;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .why-text-content h2 {
        font-size: 28px;
    }

    .why-text-content p {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
