:root {
    --primary-color: #0052cc;
    --background-color: #f8f9fa;
    --card-background: #ffffff;
    --text-color: #212529;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.main-content {
    padding-bottom: 40px;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.faq-item {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question .arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-question.active .arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

.faq-contact {
    text-align: center;
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.faq-contact h3 {
    margin-bottom: 10px;
}

.faq-contact a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}
.faq-contact a:hover {
    text-decoration: underline;
}

@media(max-width: 600px) {
    .page-header h1 {
        font-size: 2rem;
    }
    .faq-section h2 {
        font-size: 1.5rem;
    }
}