/* FAQ Page Styles */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: clamp(80px, 12vw, 120px) 0 clamp(60px, 8vw, 80px);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.9;
    font-weight: 300;
}

.faq-section {
    padding: clamp(60px, 8vw, 80px) 0;
    background: #f8f9fa;
}

.faq-intro {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.faq-intro h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    font-size: 1.5rem;
    color: #0f3460;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 24px;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: #0f3460;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #16213e;
    text-decoration: underline;
}

.contact-section {
    margin-top: clamp(60px, 8vw, 80px);
    text-align: center;
    background: white;
    padding: clamp(40px, 6vw, 60px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-section h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 52, 96, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(15, 52, 96, 0.4);
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 16px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
}
