body {
    font-family: 'Vibur', cursive;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
}

h1 {
    color: #a5b4fc;
    margin-bottom: 12px;
    font-family: 'Vibur', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    text-shadow: 0 0 30px rgba(129,140,248,0.5);
}

.question-buttons {
    border: 1px solid rgba(129,140,248,0.35);
    border-radius: 14px;
    padding: 16px 20px;
    background: rgba(15,23,42,0.75);
    color: #f8fafc;
    font-size: 1.15rem;
    cursor: pointer;
    font-family: 'Vibur', cursive;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(540px, 90vw);
    height: auto;
    min-height: 52px;
    transition: all 0.22s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}
.question-buttons:hover {
    background: rgba(129,140,248,0.18);
    border-color: #818cf8;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(129,140,248,0.25);
}

.window-for-quetions {
    background: rgba(15,23,42,0.85);
    border: 1px solid rgba(129,140,248,0.35);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    width: min(540px, 90vw);
    text-align: left;
    color: #f8fafc;
    backdrop-filter: blur(14px);
}

.x-to-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #94a3b8;
    transition: color 0.2s;
}
.x-to-close:hover { color: #f8fafc; }

.FAQ-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    max-width: 600px;
}