:root {
    --primary-color: #135393;
    --primary-light: #1e6bc5;
    --secondary-color: #ff9500;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq {
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.faq-section {
    max-width: 1000px;
    background: transparent;
    padding: 40px;
}

.faq-section {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-toggle.rotated {
    transform: rotate(180deg);
}

.contact-methods {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    border-radius: 10px;
}

.contact-item {
    padding: 20px 50px 5px;
}
