h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}
h1 .highlight {
    color: #f97316;
}

.subhead {
    font-size: 1.15rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    border-left: 4px solid #f97316;
    padding-left: 20px;
    line-height: 1.7;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f97316;
    margin: 48px 0 16px;
    line-height: 1.3;
    padding-bottom: 8px;
    border-bottom: 1px solid #2a2a2a;
}

/* FAQ блоки */
.faq-item {
    background: #121212;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover {
    border-color: #3a3a3a;
}

.faq-question {
    padding: 16px 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    user-select: none;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #222222;
}
.faq-question::after {
    content: "+";
    color: #f97316;
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.open .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #c0c0c0;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 800px;
}

.faq-answer p {
    margin: 0 0 8px 0;
    color: #c0c0c0;
    font-size: 0.95rem;
}

.faq-link {
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.faq-link:hover {
    color: #e85d0e;
}

/* CTA-блок */
.cta-block {
    background: linear-gradient(135deg, #1a1a2e, #2a1f0f);
    border-radius: 16px;
    padding: 32px 36px;
    margin: 48px 0 24px;
    border: 1px solid #f97316;
    text-align: center;
}
.cta-block h2 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.4rem;
    border-bottom: none;
    padding-bottom: 0;
}
.cta-block p {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 16px;
    font-size: 0.95rem;
}
.btn {
    display: inline-block;
    background: #f97316;
    color: #0c0c0c;
    font-weight: 600;
    padding: 14px 48px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn:hover {
    background: #e85d0e;
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 30px 16px;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    .cta-block {
        padding: 24px 20px;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 14px 16px;
    }
    .faq-answer {
        font-size: 0.9rem;
    }
    .faq-item.open .faq-answer {
        padding: 0 16px 16px 16px;
    }
}