:root {
    --primary: #ffc107;
    --dark: #0e1525;
    --darker: #080d1b;
    --text: #f8f9fa;
    --text-muted: #adb5bd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    margin-top: 3rem;
    margin-bottom: 0rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.faq-title {
    margin-top: rem;
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    margin-top: 8rem;
}

.faq-title span {
    color: var(--primary);
}

.faq-subtitle {
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question.active {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question .icon {
    min-width: 24px;
    height: 24px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
    color: var(--darker);
    margin-left: 20px;
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer-content {
    padding: 0 24px 24px;
    line-height: 1.6;
    color: var(--text-muted);
}

.decoration {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 24px;
    background-color: rgba(255, 193, 7, 0.03);
    z-index: -1;
    transform: rotate(45deg);
}

.decoration-1 {
    top: -50px;
    left: -80px;
}

.decoration-3 {
    top: 40%;
    right: 5%;
}

.badge {
    background-color: var(--primary);
    color: var(--darker);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.btn-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.3s ease;
    border: none;
}

.btn-top.visible {
    opacity: 1;
}

.btn-top:hover {
    transform: translateY(-5px);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.glowing-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
}

.search-container {
    margin-bottom: 40px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    width: 100%;
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 20px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 32px;
        margin-top: 0rem;
    }
    
    .decoration-3 {
        display: none;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .badge{
        margin-top: 7rem;
    }

}