.page__container {
  border-radius: 12px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.3); /* полупрозрачный черный фон */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ccc; /* светлый текст для темной темы */
}

.page__container h1 {
  font-size: 28px;
  color: #ffa500; /* более яркий цвет для заголовка */
  margin-bottom: 20px;
  text-align: center;
}

.page__container h2 {
  font-size: 22px;
  color: #ffa500;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #444;
  padding-bottom: 8px;
}

.page__container ul, .page__container ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.page__container li {
  margin-bottom: 10px;
}

.page__container a {
  color: #ffa500;
  text-decoration: underline;
}
.page__container a:hover {
  color: #ffa500;
}
.faq-container {
    max-width: 900px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}


.faq-item {
    margin-bottom: 14px;
}

/* КНОПКА */
.faq-accordion {
    background: #232323;
    color: #fff;
    padding: 18px 26px 18px 26px; /* одинаковый паддинг слева/справа! */
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.18em;
    font-weight: bold;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.14);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* СТРЕЛКА */
.faq-arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 8px;
    transition: transform 0.26s cubic-bezier(.4,2,.6,1), color 0.2s;
    pointer-events: none;
    /* Векторная стрелка через border */
    position: relative;
}
.faq-arrow::before {
    content: '';
    display: block;
    border: solid #ffa500;
    border-width: 0 4px 4px 0;
    padding: 5px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg) translateY(-2px);
    margin: auto;
    transition: border-color 0.2s;
}
.faq-accordion.active .faq-arrow::before {
    transform: rotate(-135deg) translateY(3px);
}

/* ПАНЕЛЬ */
.faq-panel {
    background: #282828;
    color: #e2e2e2;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin: 0; /* убираем отступ */
    padding: 0 26px 18px 26px;
    display: none;
    animation: fadeIn 0.4s;
    border-top: 2px solid #181818;
    margin-top: -2px;
}

.faq-panel p, .faq-panel ol {
    margin: 18px 0 0 0;
    font-size: 1em;
    line-height: 1.56;
}
.faq-panel ol {
    padding-left: 22px;
}
.faq-panel a {
    color: #ff9100;
    text-decoration: underline;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* гарантии */
.guar-block {
    max-width: 900px;
    margin: 34px auto 0 auto;
    font-family: Arial, sans-serif;
}

.guar-item {
    display: flex;
    align-items: flex-start;
    background: #181818;
    border-radius: 12px;
    margin-bottom: 18px;
    padding: 28px 34px 26px 24px;
    box-shadow: 0 2px 7px rgba(0,0,0,0.10);
}

.guar-num {
    min-width: 44px;
    min-height: 44px;
    background: #232323;
    color: #fff;
    font-size: 1.5em;
    font-weight: 600;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    margin-right: 22px;
    box-shadow: 0 2px 7px rgba(0,0,0,0.10);
    border: 2px solid #232323;
}

.guar-title {
    color: #ff9100;
    font-size: 1.13em;
    font-weight: bold;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.guar-content {
    color: #e2e2e2;
    font-size: 1.06em;
    line-height: 1.58;
    word-break: break-word;
}

.guar-content a {
    color: #ff9100;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .guar-block {
        padding: 0 8px;
    }
    .guar-item {
        flex-direction: column;
        padding: 18px 12px 18px 12px;
    }
    .guar-num {
        margin-bottom: 12px;
        margin-right: 0;
        align-self: flex-start;
    }
}
/* */

/* о нас */
.contacts-wrap {
    max-width: 600px;
    margin: 40px auto 0 auto;
    font-family: Arial, sans-serif;
}

.contacts-box {
    background: #181818;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 36px 32px 28px 32px;
}

.contacts-text {
    color: #e2e2e2;
    font-size: 1.09em;
    line-height: 1.65;
    margin: 0 0 18px 0;
}

.contacts-highlight {
    color: #ff9100;
    font-weight: 700;
    font-size: 1.06em;
    margin-left: 5px;
}

@media (max-width: 700px) {
    .contacts-wrap {
        padding: 0 8px;
    }
    .contacts-box {
        padding: 18px 10px 18px 10px;
    }
}
/* */

/* reviews */
.reviews-block {
    max-width: 750px;
    margin: 44px auto 0 auto;
    font-family: Arial, sans-serif;
    background: #181818;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 30px 26px 28px 26px;
}
.reviews-title {
    color: #ff9100;
    font-size: 1.55em;
    font-weight: 800;
    margin-bottom: 16px;
}
.reviews-desc {
    color: #bbb;
    font-size: 1.06em;
    margin-bottom: 28px;
}
#reviews-list {
    margin-bottom: 20px;
}
.review-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
    background: #232323;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #252525;
}
.review-username {
    color: #ffe066;
    font-weight: 700;
    font-size: 1.13em;
}
.review-message {
    color: #e2e2e2;
    font-size: 1.04em;
    margin: 9px 0 0 0;
}
.review-likes {
    display: flex;
    align-items: center;
    color: #ff9100;
    font-weight: 600;
    font-size: 1em;
    margin-top: 7px;
}
.review-like-icon {
    margin-right: 4px;
}
.reviews-loadmore {
    display: block;
    margin: 0 auto;
    background: #ff9100;
    color: #232323;
    border: none;
    border-radius: 10px;
    padding: 12px 38px;
    font-size: 1.08em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s;
}
.reviews-loadmore:hover {
    background: #ffb366;
}
@media (max-width: 600px) {
    .reviews-block {
        padding: 13px 3px 13px 3px;
    }
    .review-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .review-avatar {
        margin-bottom: 12px;
        margin-right: 0;
    }
}
.review-like-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 2px;
    margin-right: 6px;
    transition: transform 0.1s;
    vertical-align: middle;
}
.review-like-btn.liked .review-like-icon path {
    fill: #ffcb00;
}
.review-like-btn:active {
    transform: scale(1.12);
}
.review-likes-count {
    font-weight: 600;
    color: #ff9100;
    font-size: 1em;
    vertical-align: middle;
}
/* */