span.faq-trigger-left, #faq summary {
    font-weight: 500;
}
.faq-body-inner, #faq details p {
    border-left: 0;
    padding-left: 2em;
}
p.faq-section-title {
    font-size: 1.45em;
    font-weight: 400;
    text-transform: none;
}
button {
	font-family: 'Inter', sans-serif;
}
section#about {
    margin-bottom: 3em;
}
/* ============================================
   MODERN COOKIE BANNER (DARK STYLE)
   ============================================ */
#cookie-banner {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%) translateY(100px); /* Скрыт по умолчанию */
    width: calc(100% - 40px);
    max-width: 600px;
    background: rgba(15, 15, 35, 0.95); /* Темный фон Tomorrowland */
    border: 1px solid rgba(212, 175, 55, 0.3); /* Золотистая рамка */
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 10001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Плавный выезд */
}

#cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
}

#cookie-banner p {
    color: #e9e9e9;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-banner p a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

#cookie-banner p a:hover {
    text-decoration: underline;
}

#cookie-banner button {
    background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
    color: #1a1a2e;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

#cookie-banner button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
        padding: 20px;
    }
    
    #cookie-banner button {
        width: 100%;
    }
}