/* FAQ Page Specific Styles */
.faq-hero-container {
    min-height: 60vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero-content {
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.faq-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.faq-hero-subtitle {
    font-size: 1.4rem;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.back-home-btn {
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: linear-gradient(45deg, #ffa500, #ffd700);
    transform: translateY(-3px);
}

.faq-content-container {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    padding: 80px 0;
    min-height: 100vh;
}

.faq-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section {
    background: rgba(0,0,0,0.8);
    border: 2px solid rgba(255,107,53,0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.faq-section:hover {
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255,107,53,0.2);
}

.faq-section-title {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid rgba(255,107,53,0.3);
    padding-bottom: 15px;
}

.faq-text-content {
    color: #e0e0e0;
    line-height: 1.8;
}

.faq-text-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.faq-text-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.faq-text-content li {
    margin-bottom: 10px;
    color: #cccccc;
    font-size: 1rem;
}

.faq-text-content strong {
    color: #ffa500;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 3rem;
    }

    .faq-section {
        padding: 25px 20px;
    }

    .faq-section-title {
        font-size: 1.6rem;
    }
}