/* FAQ-specific styles */
.nav-link {
    color: rgb(206, 186, 76);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(206, 186, 76, 0.5);
    border-radius: 4px;
    transition: all 0.2s;
}
.nav-link:hover {
    background-color: rgba(206, 186, 76, 0.1);
    border-color: rgb(206, 186, 76);
}
.nav-link.active {
    background-color: rgba(206, 186, 76, 0.2);
}
/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 2rem;
}
.faq-intro h2 {
    color: rgb(206, 186, 76);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.faq-intro p {
    color: #aaa;
    font-size: 1rem;
}

/* Category Sections */
.faq-category {
    margin-bottom: 2rem;
}
.faq-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(206, 186, 76, 0.3);
}
.faq-category-header svg {
    width: 24px;
    height: 24px;
    color: rgb(206, 186, 76);
}
.faq-category-header h3 {
    color: rgb(206, 186, 76);
    font-size: 1.1rem;
    margin: 0;
}

/* FAQ Items */
.faq-item {
    background-color: rgba(13, 40, 73, 0.6);
    border: 1px solid rgba(206, 186, 76, 0.2);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}
.faq-item:hover {
    border-color: rgba(206, 186, 76, 0.4);
}
.faq-item.active {
    border-color: rgba(206, 186, 76, 0.5);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}
.faq-question:hover {
    background-color: rgba(206, 186, 76, 0.05);
}
.faq-question h4 {
    color: #f2f2f2;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}
.faq-icon {
    width: 20px;
    height: 20px;
    color: rgb(206, 186, 76);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}
.faq-answer-content p {
    margin: 0 0 0.75rem 0;
}
.faq-answer-content p:last-child {
    margin-bottom: 0;
}
.faq-answer-content ul {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}
.faq-answer-content li {
    margin-bottom: 0.4rem;
}
.faq-answer-content code {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85rem;
    color: rgb(206, 186, 76);
}
.faq-answer-content strong {
    color: #f2f2f2;
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    background-color: rgba(13, 40, 73, 0.6);
    border: 1px solid rgba(206, 186, 76, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.quick-link:hover {
    border-color: rgb(206, 186, 76);
    background-color: rgba(206, 186, 76, 0.1);
    transform: translateY(-2px);
}
.quick-link svg {
    width: 32px;
    height: 32px;
    color: rgb(206, 186, 76);
    margin-bottom: 0.75rem;
}
.quick-link span {
    color: #f2f2f2;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background-color: rgba(13, 40, 73, 0.4);
    border: 1px solid rgba(206, 186, 76, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}
.contact-section h4 {
    color: rgb(206, 186, 76);
    margin: 0 0 0.5rem 0;
}
.contact-section p {
    color: #aaa;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .quick-links {
        grid-template-columns: 1fr;
    }
}
