.faq-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #dddddd;
}

.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(--wd--black);
    letter-spacing: var(--letterSpacing);
}

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

.faq-questions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(247, 71, 128, 0.2); 
    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: var(--wd-link-color);
    letter-spacing: var(--letterSpacing);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--wd-alternative-color); 
    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;
}

.faq-answer > p {
    letter-spacing: var(--letterSpacing);
    font-weight: 500;
    color: #555;
    padding-bottom: 20px;
}

.faq-answer strong {
    color: var(--primary-color);
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(247, 71, 128, 0.1);
    border-color: var(--primary-color);
}

.faq-item.active .faq-answer {
    max-height: 500px; 
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

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

.faq-contact-card {
    background: #fff;
    border: 1px solid rgba(247, 71, 128, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(247, 71, 128, 0.3);
}

.faq-contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--wd--black);
}

.faq-contact-card p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
    letter-spacing: var(--letterSpacing);
    color: #666;
    font-weight: 500;
}

.btn-direct-mail {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: var(--btn-accented-bgcolor);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: var(--letterSpacing);
    border: none;
}

.btn-direct-mail:hover {
    background-color: var(--btn-accented-bgcolor-hover);
    color: var(--wd--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 71, 128, 0.3);
}

@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;
    }
}