/* ========== БАЗОВЫЙ ШАБЛОН АККОРДЕОНА ========== */
.accordion-template {
    max-width: 1150px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    padding-bottom:50px;
    padding-top:30px;
    padding-left:0px;
    margin-left:-1px;


    width:100%;
}
.accordion-template h2 {
    font-size: 28px;
    color: #0b2d2e;
    margin-bottom: 30px;
    border-left: 5px solid #2A9E89;
    padding-left: 20px;
}
.accordion-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.accordion-item {
    border: 1px solid #e0e8ed;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: all 0.2s ease;
}
.accordion-item:hover {
    border-color: #2A9E89;
    box-shadow: 0 4px 12px rgba(42,158,137,0.1);
}
.accordion-question {
    padding: 18px 24px;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    color: #0b2d2e;
    border-bottom: 1px solid transparent;
}
.accordion-item.open .accordion-question {
    border-bottom-color: #d0e0e5;
    background: #f0f5f8;
}
.accordion-question:after {
    content: "▼";
    font-size: 14px;
    color: #2A9E89;
    transition: transform 0.3s;
}
.accordion-item.open .accordion-question:after {
    transform: rotate(180deg);
}
.accordion-answer {
    display: none;
    padding: 24px;
    background: #ffffff;
    line-height: 1.6;
    color: #2c4059;
}
.accordion-item.open .accordion-answer {
    display: block;
}
.accordion-answer p {
    margin: 0 0 16px 0;
    color: #2c4059;
}
.accordion-answer p:last-child {
    margin-bottom: 0;
}
.accordion-answer ul,
.accordion-answer ol {
    margin: 12px 0 16px 0;
    padding-left: 24px;
}
.accordion-answer li {
    margin-bottom: 6px;
}
.accordion-answer strong {
    color: #0b2d2e;
}
.price-badge {
    background: #e0f0ec;
    color: #1a6b5f;
    padding: 4px 14px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin: 8px 0;
    border: 1px solid #a8d5cc;
    font-size: 14px;
}
.example-tag {
    background: #e0f0ec;
    color: #1a6b5f;
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
    margin-right: 8px;
}
.supplier-note {
    background: #f3faf8;
    border-left: 4px solid #2A9E89;
    padding: 16px 20px;
    margin: 20px 0 10px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
}
.cta-link {
    display: inline-block;
    background: #2A9E89;
    color: white;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.2s;
}
.cta-link:hover {
    background: #1f7a6a;
}
hr {
    border: none;
    border-top: 1px dashed #bdd3cf;
    margin: 30px 0 20px;
}
/* ========== КОНЕЦ ШАБЛОНА ========== */
