.sticker-seo{
    max-width:1200px;
    font-family:Arial,sans-serif;
    color:#333;
    line-height:1.7;
}

.sticker-seo h1{
    font-size:36px;
    margin-bottom:20px;
}

.sticker-seo h2{
    margin-top:35px;
    margin-bottom:15px;
}

.sticker-seo ul{
    padding-left:20px;
}

.specs-table{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:15px;
    margin-top:20px;
}

.specs-table div{
    background:#f7f7f7;
    padding:15px;
    border-radius:8px;
}

.faq-section{
    margin-top:0;
}

.faq-item{
    border:1px solid #e5e5e5;
    border-radius:8px;
    margin-bottom:10px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    text-align:left;
    border:none;
    background:#fff;
    padding:18px 20px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    position:relative;
}

.faq-question::after{
    content:"+";
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
}

.faq-item.active .faq-question::after{
    content:"?";
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    background:#fafafa;
    padding:0 20px;
}

.faq-item.active .faq-answer{
    max-height:300px;
    padding:0 20px 20px;
}