.dg-policy-faq {
    padding: 60px 0 100px;
    background: var(--dg-light-gray);
}

.dg-policy-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ---- Política de baja ---- */
.dg-policy-list {
    list-style: disc;
    margin: 24px 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--dg-gray);
    font-size: 14px;
}

.dg-policy-contact {
    font-size: 14px;
    color: var(--dg-black);
    margin: 0;
}

.dg-policy-contact a {
    color: var(--dg-black);
    text-decoration: underline;
}

/* ---- FAQ ---- */
.dg-faq .dg-section-title {
    margin-bottom: 24px;
}

.dg-faq-list {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.dg-faq-item {
    background: #fff;
}

.dg-faq-item.dg-faq-open {
    background: #fff;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 0 20px;
    margin-bottom: 12px;
}

.dg-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    padding: 18px 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dg-black);
    text-align: left;
    cursor: pointer;
}

.dg-faq-question:hover,
.dg-faq-question:focus{
    color: #000;
    background-color: #fff !important;
}

.dg-faq-item.dg-faq-open .dg-faq-question{
    padding: 18px 0px;
}

.dg-faq-icon {
    font-size: 16px;
    flex: 0 0 auto;
    color: var(--dg-black);
}

.dg-faq-icon::before {
    content: '+';
}

.dg-faq-item.dg-faq-open .dg-faq-icon::before {
    content: '\2212';
}

.dg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.dg-faq-item.dg-faq-open .dg-faq-answer {
    max-height: 200px;
}

.dg-faq-answer p {
    font-size: 13px;
    color: var(--dg-gray);
    line-height: 1.6;
    margin: 0;
    padding: 0 4px 18px;
}