body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', sans-serif;
}

.qa-hero {
    background: linear-gradient(135deg, #AC5512 0%, #d4691b 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.qa-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.qa-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.qa-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.qa-search button {
    background-color: #AC5512;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.qa-search button:hover {
    background-color: #8a4510;
}

.qa-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid #AC5512;
    background-color: transparent;
    color: #AC5512;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.category-btn:hover,
.category-btn.active {
    background-color: #AC5512;
    color: white;
}

.qa-list {
    margin-bottom: 60px;
}

.qa-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.qa-item:hover {
    box-shadow: 0 4px 15px rgba(172, 85, 18, 0.15);
}

.qa-item.active {
    border-color: #AC5512;
}

.question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.question:hover {
    background-color: #f0f0f0;
}

.qa-item.active .question {
    background-color: #AC5512;
    color: white;
}

.question h3 {
    margin: 0;
    color: #AC5512;
    font-size: 1.2rem;
    font-weight: 600;
}

.qa-item.active .question h3 {
    color: white;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #AC5512;
    transition: transform 0.3s ease;
}

.qa-item.active .toggle-icon {
    color: white;
    transform: rotate(180deg);
}

.answer {
    padding: 25px;
    background-color: white;
    border-top: 1px solid #f0f0f0;
    line-height: 1.6;
}

.answer p {
    margin-bottom: 15px;
    color: #333;
}

.answer ul,
.answer ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.answer li {
    margin-bottom: 8px;
    color: #555;
}

.answer strong {
    color: #AC5512;
    font-weight: 600;
}

.answer em {
    color: #AC5512;
    font-style: italic;
}

.qa-contact {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.qa-contact h2 {
    color: #AC5512;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 2rem;
}

.qa-contact p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-option {
    flex: 1;
    min-width: 200px;
}

.contact-option h4 {
    color: #AC5512;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-option p {
    color: #666;
    font-size: 1rem;
}

.contact-btn {
    display: inline-block;
    background-color: #AC5512;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #8a4510;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(172, 85, 18, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .qa-hero h1 {
        font-size: 2rem;
    }
    
    .qa-hero p {
        font-size: 1rem;
    }
    
    .qa-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .question h3 {
        font-size: 1rem;
    }
}
