:root {
    --primary-color: #8db902;
    --secondary-color: #0a0e17;
    --accent-color: #1a2332;
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --transition: all 0.3s ease;
    --border-radius: 7px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* FAQ Container */
.faq-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Items */
.faq-item {
    background: rgba(26, 35, 50, 0.6);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.faq-question {
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 1px;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Active States */
.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 1.2rem;
    transition-delay: 0.1s;
}

/* ==================== RESPONSIVE ==================== */

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .faq-container {
        padding: 1.5rem 0.8rem;
    }
    
    .faq-title {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }
    
    .faq-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .faq-item {
        margin-bottom: 0.6rem;
    }
    
    .faq-question {
        padding: 0.9rem 1rem;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem;
        font-size: 0.85rem;
    }
    
    .faq-item.active .faq-answer-content {
        padding-bottom: 1rem;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .faq-container {
        padding: 1rem 0.5rem;
    }
    
    .faq-title {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }
    
    .faq-subtitle {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 0.8rem;
    }
    
    .faq-question span {
        font-size: 0.9rem;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer-content {
        padding: 0 0.8rem;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .faq-item.active .faq-answer-content {
        padding-bottom: 0.8rem;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .faq-container {
        padding: 3rem 2rem;
    }
    
    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question span {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        width: 22px;
        height: 22px;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem;
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .faq-item.active .faq-answer-content {
        padding-bottom: 1.5rem;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .faq-container {
        padding: 4rem 2rem;
        max-width: 800px;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3.5rem;
    }
    
    .faq-question {
        padding: 1.5rem 2rem;
    }
    
    .faq-question span {
        font-size: 1.15rem;
    }
    
    .faq-answer-content {
        padding: 0 2rem;
        font-size: 1.05rem;
    }
    
    .faq-item.active .faq-answer-content {
        padding-bottom: 2rem;
    }
}
/* FAQ Container */
.faq-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== RESPONSIVE ==================== */

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .faq-container {
        padding: 1.5rem 0.8rem;
    }
    
    .faq-title {
        font-size: 1.8rem; /* Increased from 1.3rem */
        margin-bottom: 0.5rem; /* Increased spacing */
    }
    
    .faq-subtitle {
        font-size: 1rem; /* Increased from 0.75rem */
        margin-bottom: 1.5rem; /* Increased spacing */
        line-height: 1.4;
    }
    
    .faq-item {
        margin-bottom: 0.6rem;
    }
    
    .faq-question {
        padding: 0.9rem 1rem;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem;
        font-size: 0.85rem;
    }
    
    .faq-item.active .faq-answer-content {
        padding-bottom: 1rem;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .faq-container {
        padding: 1rem 0.5rem;
    }
    
    .faq-title {
        font-size: 1.6rem; /* Increased from 1.1rem */
        margin-bottom: 0.3rem; /* Increased spacing */
    }
    
    .faq-subtitle {
        font-size: 0.9rem; /* Increased from 0.7rem */
        margin-bottom: 1.2rem; /* Increased spacing */
    }
    
    .faq-question {
        padding: 0.8rem;
    }
    
    .faq-question span {
        font-size: 0.9rem;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer-content {
        padding: 0 0.8rem;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .faq-item.active .faq-answer-content {
        padding-bottom: 0.8rem;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .faq-container {
        padding: 3rem 2rem;
    }
    
    .faq-title {
        font-size: 2.5rem; /* Increased from 2.2rem */
        margin-bottom: 1rem; /* Increased spacing */
    }
    
    .faq-subtitle {
        font-size: 1.3rem; /* Increased from 1.1rem */
        margin-bottom: 3rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question span {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        width: 22px;
        height: 22px;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem;
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .faq-item.active .faq-answer-content {
        padding-bottom: 1.5rem;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .faq-container {
        padding: 4rem 2rem;
        max-width: 800px;
    }
    
    .faq-title {
        font-size: 2.8rem; /* Increased from 2.5rem */
        margin-bottom: 1rem;
    }
    
    .faq-subtitle {
        font-size: 1.4rem; /* Increased from 1.2rem */
        margin-bottom: 3.5rem;
    }
    
    .faq-question {
        padding: 1.5rem 2rem;
    }
    
    .faq-question span {
        font-size: 1.15rem;
    }
    
    .faq-answer-content {
        padding: 0 2rem;
        font-size: 1.05rem;
    }
    
    .faq-item.active .faq-answer-content {
        padding-bottom: 2rem;
    }
}