/* Estilos específicos para la página Why Choose Us */
.why-choose-header {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-weight: bold;
    padding-left: 100px;
}

.why-choose-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 10px auto;
    padding: 15px;
    box-sizing: border-box;
    gap: 20px;
}

.why-choose-image {
    width: 33%;
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.why-choose-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.why-choose-text {
    width: 66%;
    font-size: 0.95rem;
    color: rgb(249, 248, 248);
}

.why-choose-text ul {
    list-style-type: none;
    padding: 0;
}

.why-choose-text li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.why-choose-footer {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: rgb(247, 245, 245);
}

.why-choose-btn {
    display: inline-block;
    font-size: 0.9rem;   
    padding: 10px 25px;
    background-color: #30ac0a;
    color: rgb(5, 0, 0);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0c243c;
    color: #ffffff;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-content {
        flex-direction: column;
    }
    .why-choose-image {
        width: 80%;
        max-width: 300px;
    }
    .why-choose-text {
        width: 100%;
    }
}
