:root {
  --main-color: #fff;
  --main-background: #212932;
  --accented-button: #359600;
  --orange-accent: #fb4d00;
}

body {
  background: #16181b;
  color: var(--main-color);
  font-family: "Verdana", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header,
footer {
  background: #0d121a;
}

.header-inner,
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 58px;
}

.header-actions {
  display: flex;
  gap: 15px;
}

.button {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  color: var(--main-color);
  background: var(--accented-button);
  border-radius: 4px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.button:hover {
  opacity: 0.8;
}

.button.secondary {
  background: var(--orange-accent);
}

/* Центрирование кнопок в контенте */
.btn-container {
  text-align: center;
  margin: 25px 0;
}

.section {
  background: var(--main-background);
  border-radius: 10px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 40px;
  box-sizing: border-box;
}

.section img {
  display: block;
  margin: 1.5rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px; 
}

h1,
h2,
h3 {
  color: var(--main-color);
  margin-top: 0;
  line-height: 1.3;
}

h1 {
  font-size: 34px;
  border-bottom: 2px solid var(--accented-button);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
}

p {
  margin: 0 0 20px 0;
}

a {
  color: var(--accented-button);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3ba900;
}

ul,
ol {
  margin: 0 0 25px 20px;
  padding: 0;
}

.section ul {
  list-style-type: none;
  margin-left: 0;
}

.section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.section ul li::before {
  content: "■";
  color: var(--accented-button);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  line-height: 1.6;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 25px 0;
}

td {
  padding: 14px 20px;
  text-align: left;
  border: 1px solid #2a3441;
  color: var(--main-color);
}

tr {
  background: transparent;
}

tr:nth-child(2n) {
  background: #171b1f;
}

.pros-cons {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.pros-cons > div {
  flex: 1;
  background: #171b1f;
  padding: 25px;
  border-radius: 10px;
  border-top: 4px solid var(--accented-button);
}

.pros-cons > div:last-child {
  border-top-color: var(--orange-accent);
}

.pros-cons h3 {
  margin-top: 0;
  text-align: center;
}

.expert-note {
  background: rgba(251, 77, 0, 0.08);
  border-left: 4px solid var(--orange-accent);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

/* FAQ Logic */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #171b1f;
  border: 2px solid #212932;
  border-radius: 26px;
  padding: 20px 30px;
  position: relative;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--main-color);
}

.toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.faq-question {
  font-weight: bold;
  font-size: 18px;
  color: #f9ba15;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.icon::after {
  content: "+";
  font-size: 24px;
  color: var(--accented-button);
}

.faq-answer {
  margin: 15px 0 0 0;
  display: none;
  line-height: 1.6;
  color: var(--main-color);
}

.toggle:checked ~ .faq-answer {
  display: block;
}

.toggle:checked ~ .icon::after {
  content: "-";
}

.footer-brand {
  font-size: 20px;
  font-weight: bold;
  color: var(--main-color);
}

@media (max-width: 768px) {
  .pros-cons {
    flex-direction: column;
  }
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }
}
