.faq-container {
    padding-top: 100px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-header h1 {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.faq-section {
    margin-bottom: 2.5rem;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-color, #ffc107);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.accordion-item {
    background: rgba(18, 24, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.1);
}

.accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 193, 7, 0.1);
    color: var(--gold-color, #ffc107);
    font-weight: 600;
}

.accordion-button:focus {
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.15);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: brightness(0) saturate(100%) invert(79%) sepia(99%) saturate(1155%) hue-rotate(3deg) brightness(103%) contrast(101%);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.accordion-body ul,
.accordion-body ol {
    padding-left: 1.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

.accordion-body strong {
    color: var(--gold-color, #ffc107);
}

.accordion-body a {
    color: var(--gold-color, #ffc107);
    text-decoration: none;
    transition: all 0.3s ease;
}

.accordion-body a:hover {
    color: #ff9800;
    text-decoration: underline;
}

.contact-box {
    background: rgba(18, 24, 40, 0.6);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-top: 3rem;
}

.contact-box h3 {
    color: var(--gold-color, #ffc107);
    font-weight: 700;
}

.contact-box .btn {
    transition: all 0.3s ease;
}

.contact-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animation for accordion items */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-item {
    animation: fadeIn 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }
    
    .faq-category-title {
        font-size: 1.25rem;
    }
    
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
    
    .contact-box {
        padding: 2rem 1.5rem;
    }
}

