.faq-section {
    padding: 80px 20px;
    /* background-color: #f7f6f4; */
    background-color: #F4F4F4;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--color-black);
}

/* Grid Principal */
.faq-content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Lista de Preguntas */
.faq-questions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #034c8c62;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: #333;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--color-accent-orange);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.6;
}

/* Estado Activo del Acordeón */
.faq-item.active {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item.active .faq-answer {
    max-height: 340px;
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Tarjeta de Contacto (Derecha) */
.faq-contact-card {
    background: #fff;
    border: 1px solid #034c8c62;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: sticky;
    top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary-medium);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
}

.faq-contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-contact-card p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-direct-mail {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: var(--color-primary-medium); /* Color naranja suave de la imagen */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-direct-mail:hover {
    background-color: var(--color-accent-orange);
}

/* Responsivo */
@media (max-width: 991px) {
    .faq-content-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .faq-contact-card {
        position: relative;
        margin-top: 20px;
    }
}