/* FAQ Akordeón */
.faq-accordion {
    width: 100%;
    margin: 0 auto;
    font-family: 'Fedra Sans Alt Pro', sans-serif;
}

.accordion-item {
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.accordion-header {
    padding: 1rem;
    color: var(--Black-950, #000);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #EFEFEF;
    transition: opacity linear 0.3s, width linear 0.3s;
    white-space: nowrap;
}

.accordion-title {
    flex-grow: 1;
    color: var(--Black-950, #000);
    font-family: 'Fedra Sans Alt Pro', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2rem;
}

.accordion-content li {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
	
}

.accordion-content a {
    color: #000;
    text-decoration: underline!important;
    transition: color 0.3s ease;
}

.accordion-content a:hover {
    color: #000;
}

.accordion-toggle {
    display: inline-flex;
    align-items: center;
    color: var(--Black-950, #000);
    font-family: 'Fedra Sans Alt Pro', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2rem;
}

.accordion-toggle svg {
    width: 1rem;
    height: 0.5625rem;
    transition: transform 0.1s ease;
}

.accordion-content {
    padding: 0 1rem;
    background: #DCDCDC;
    max-height: 0;
    overflow: hidden;
    font-weight: 300;
    border-radius: 0 0 0.5rem 0.5rem;
    transition: opacity linear 0.3s, width linear 0.3s;
    display: none;
    cursor: pointer;
}

.accordion-item.active .accordion-header {
    background: #DCDCDC;
    transition: opacity linear 0.3s, width linear 0.3s;
}

.accordion-item.active .accordion-title {
    font-weight: 400;
}

.accordion-item.active .accordion-content {
    padding: 0 17rem 1rem 1rem;
    max-height: 62.5rem;
	color: #000;
    display: block;
    transition: opacity linear 0.3s, width linear 0.3s;
}

.accordion-item.active .accordion-toggle svg {
    transform: rotate(180deg);
}

/* Media Query for Mobile (max-width: 820px) */
@media screen and (max-width: 921px) {
    .accordion-item.active .accordion-content {
        padding: 0 1rem 1rem 1rem; /* Reduced padding for mobile */
        max-height: none; /* Remove max-height to allow content to expand naturally */
        display: block;
        transition: opacity linear 0.3s; /* Simplify transition for mobile */
    }

    .accordion-header {
        padding: 1rem; /* Slightly smaller padding for mobile */
        white-space: normal; /* Allow text to wrap on mobile */
    }

    .accordion-title {
        font-size: 1rem; /* Slightly smaller font size for mobile */
        line-height: 1.2rem;
		max-width: 18.375rem;
    }

    .accordion-content {
        padding: 0 1rem; /* Adjust padding for non-active content */
    }

    .accordion-content li {
        margin-left: 1.25rem; /* Slightly smaller margin for list items */
        font-size: 1rem; /* Smaller font size for mobile */
    }
	.accordion-content ul {
        padding:0.5rem;
		margin:0;
    }

    .accordion-toggle {
        font-size: 1rem; /* Smaller font size for toggle */
    }

    .accordion-toggle svg {
        width: 0.875rem; /* Slightly smaller SVG icon */
        height: 0.5rem;
    }
}