.faq-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.faq-subtitle {
    color: #596777;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(34, 34, 59, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 8px rgba(34, 34, 59, 0.1);
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    background-color: white;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--color-light);
    background-color: var(--color-secondary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 2px rgba(74, 78, 105, 0.2);
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2322223B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A4E69'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    color: var(--color-secondary);
    background-color: white;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    line-height: 1.6;
}

/* Animation for accordion content */
.accordion-collapse {
    transition: all 0.3s ease-in-out;
}

.accordion-collapse.collapsing {
    opacity: 0;
}

.accordion-collapse.show {
    opacity: 1;
}

/* Hover states */
.accordion-button:hover {
    background-color: var(--color-light);
    color: var(--color-secondary);
}

/* Active state */
.accordion-item.active {
    border-left: 4px solid var(--color-accent);
}

/* Links within accordion content */
.accordion-body a {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.accordion-body a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

.faq-contact {
    background-color: white;
    border-radius: 15px 15px 0 0;
    padding: 3rem 2rem;
    margin-top: 3rem;
    position: relative;
    border-left: 5px solid var(--color-secondary);
    box-shadow: 0 4px 15px rgba(34, 34, 59, 0.08);
}

.faq-contact h3 {
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    position: relative;
    display: inline-block;
}

.faq-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
    border-radius: 2px;
}

.faq-contact p {
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.faq-contact-btn {
    background-color: var(--color-secondary);
    color: var(--color-light);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-contact-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 78, 105, 0.2);
}

.faq-contact-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-contact-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .faq-contact {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .faq-contact h3 {
        font-size: 1.5rem;
    }
    
    .faq-contact p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: white;
}


.faq-header .container {
    position: relative;
    z-index: 2;
}

.faq-icon {
    font-size: 2.5rem;
    color: #60a6bf;
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

.faq-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.faq-subtitle {
    color: #596777;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-header .decoration {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(96, 166, 191, 0.1);
    border-radius: 50%;
}

.faq-header .decoration-1 {
    top: -90px;
    right: -90px;
}

.faq-header .decoration-2 {
    bottom: -90px;
    left: -90px;
}


.faq-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-light);
    padding: 3rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(34, 34, 59, 0.1);
}

.faq-header h1 {
    color: var(--color-light);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.faq-header p {
    color: var(--color-light-accent);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.faq-header .container {
    position: relative;
}

@media (max-width: 768px) {
    .faq-header {
        padding: 2rem 0;
    }

    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }
}