@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&family=Rajdhani:wght@400;600&display=swap');

body {
    background: #122844;
    margin: 0;
    padding: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px;
    background: transparent;
}

.back-button {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.back-button:hover {
    opacity: 0.8;
}

.back-arrow {
    color: #ffd700;
    text-decoration: none;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    position: fixed;
    top: 20px;
    left: 20px;
}

.back-arrow:hover {
    transform: translateX(-10px);
    color: #fff;
}

.faq-page {
    padding: 20px;
    margin-top: 40px;
}

.page-title {
    color: #ffd700;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
}

.faq-section {
    background-color: #122844;
    padding: 80px 0;
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    margin-bottom: 20px;
    background: #0A1625;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-button {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-button:hover {
    background: rgba(255, 215, 0, 0.05);
}

.plus-icon {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 24px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    padding-bottom: 24px;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

.section-title {
    color: #ffd700;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
}