.faq p{
	margin:10px 0;
}

.faq__block {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__block + .faq__block {
    margin-top: 12px;
}

label.faq__question {
    display: block;
    padding: 16px 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: #333C57;
    background: #f5f5f7;
    font-size: 16px;
    transition: background 0.3s;
}

label.faq__question:hover {
    background: #eceef3;
}

.faq__question::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #333C57;
    border-left: 2px solid #333C57;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s ease;
}

.faq__question.open::before {
    transform: translateY(-50%) rotate(135deg);
}

.faq__answer {
    display: none;
    padding: 0 20px 16px 20px;
    background: #ffffff;
    color: #4a4a4a;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 15px;
    line-height: 1.6;
}

.faq__answer a {
    color: #F5A623;
    text-decoration: underline;
}

.faq__answer a:hover {
    text-decoration: none;
}

.fag-checkbox {
    position: absolute;
    left: -9999px;
}

.fag-checkbox:checked ~ .faq__answer {
    display: block;
}