:root {
  /* Primary Colors */
  --primary-color: #3461ff;
  --primary-hover: #2451ef;
  --primary-gradient: linear-gradient(90deg, #3461ff 0%, #8454eb 100%);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b5b9c2;
  --text-muted: #7f8696;
  --text-on-primary: #ffffff;
  --text-on-secondary: #ffffff;
  --text-light: #ffffff;

  /* Background Colors */
  --bg-body: rgb(6, 7, 14);
  --bg-dark: #0f1923;
  --bg-darker: #0a1118;
  --bg-table: #0a121a;

  /* Accent Colors */
  --accent-blue: #3461ff;
  --accent-purple: #8454eb;
  --accent-green: #00e701;
  --accent-red: #ff4444;

  /* Border Colors */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);

  /* Shadow Colors */
  --shadow-color: rgba(0, 0, 0, 0.2);
  --shadow-color-dark: rgba(0, 0, 0, 0.3);
  --shadow-color-darker: rgba(0, 0, 0, 0.4);

  /* Layout */
  --header-height: 77px;
  --scroll-offset: 20px;
  --scroll-padding: calc(var(--header-height) + var(--scroll-offset));

  /* Button Variables */
  --tab-color-1: #1c2036;
  --tab-color-text: #ffffff;
  --tab-border-radius: 8px;
  --tab-height: 48px;
  --tab-padding-x: 24px;
  --tab-padding-y: 12px;

  /* Primary Button Variables */
  --primary-button--bg-color: #1c2036;
  --primary-button--bg-color-hover: linear-gradient(178deg, #242942 45.54%, #40a7fc 222.06%);
  --primary-button--bg-color-active: #181c2f;
  --primary-button--bg-color-disabled: #1c2036;
  --primary-button--border-color-disabled: #393f60;
  --primary-button--border-color: #1193fe;
  --primary-button--border-color-active: #0686ef;
  --primary-button--border-color-hover: #40a7fc;

  /* Secondary Button Variables */
  --secondary-button--bg-color: linear-gradient(2deg, #09ce4a -126.87%, #242942 48.91%);
  --secondary-button--bg-color-hover: linear-gradient(2deg, #19f061 -129.97%, #242942 89.88%);
  --secondary-button--bg-color-active: #181c2f;
  --secondary-button--bg-color-disabled: #393f60;
  --secondary-button--border-color-disabled: #838aaf;
  --secondary-button--border-color: #09ce4a;
  --secondary-button--border-color-active: #05ad3d;
  --secondary-button--border-color-hover: #19f061;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(6, 7, 14);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Regular link styles */
a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-color);
  /* Using primary color for hover */
  text-decoration: underline;
}

section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Button styles */
.button {
  align-items: center;
  background: var(--tab-color-1);
  border: 2px solid transparent;
  border-radius: var(--tab-border-radius);
  color: var(--tab-color-text);
  display: flex;
  font-size: 16px;
  font-weight: 400;
  gap: 8px;
  height: var(--tab-height);
  justify-content: center;
  line-height: 24px;
  padding: var(--tab-padding-y) var(--tab-padding-x);
  transition: .3s;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

/* Primary Button */
.button-primary {
  font-weight: 700;
  background: var(--primary-button--bg-color);
  border-color: var(--primary-button--border-color);
  box-shadow: 0 0 0 4px rgba(17, 147, 254, 0.2);
}

.button-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid var(--primary-button--border-color);
  border-radius: var(--tab-border-radius);
  pointer-events: none;
}

.button-primary:active {
  background: var(--primary-button--bg-color-active);
  border-color: var(--primary-button--border-color-active);
}

.button-primary:disabled {
  background: var(--primary-button--bg-color-disabled);
  border-color: var(--primary-button--border-color-disabled);
  cursor: not-allowed;
}

.button-primary:hover {
  color: #fff;
}

/* Secondary Button */
.button-secondary {
  font-weight: 700;
  background: var(--secondary-button--bg-color);
  border-color: var(--secondary-button--border-color);
  box-shadow: 0 0 0 4px rgba(9, 206, 74, 0.2);
}

.button-secondary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid var(--secondary-button--border-color);
  border-radius: var(--tab-border-radius);
  pointer-events: none;
}

.button-secondary:active {
  background: var(--secondary-button--bg-color-active);
  border-color: var(--secondary-button--border-color-active);
}

.button-secondary:disabled {
  background: var(--secondary-button--bg-color-disabled);
  border-color: var(--secondary-button--border-color-disabled);
  cursor: not-allowed;
}

.button-secondary:hover {
  color: #fff;
}

.card {
  background-color: var(--bg-dark);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.table-of-contents {
  background: var(--bg-table);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px 30px;
  margin: 20px 0;
  color: #e0e0e0;
  box-shadow: 0 4px 6px var(--shadow-color-darker);
}

.table-of-contents h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.5em;
  border-bottom: 1px solid #3d3d3d;
  padding-bottom: 10px;
}

.table-of-contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-of-contents li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.table-of-contents li:before {
  content: "•";
  color: var(--accent-blue);
  position: absolute;
  left: 0;
}

.table-of-contents a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 4px 0;
}

.table-of-contents a:hover {
  color: var(--primary-color);
  transform: translateX(8px);
}

.header .header-items__list {
  font-size: 14px;
  display: flex;
  gap: 20px;
  list-style: none;
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .grid {
    grid-template-columns: repeat(6, 1fr);
  }

  :root {
    --header-height: 65px;
  }

  section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .hero-container {
    margin: 0 -1rem 1.5rem -1rem;
    width: calc(100% + 2rem);
    border-radius: 0;
  }

  .hero-container::after {
    border-radius: 0;
  }

  .hero-image {
    height: 300px;
    border-radius: 0;
  }

  .hero-content {
    width: calc(100% - 2rem);
    padding: 1rem;
  }

  .table-wrapper {
    margin: 1rem -1rem;
    width: calc(100% + 2rem);
    border-radius: 0;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .main {
    padding: 1rem 0;
  }

  .table-wrapper,
  .hero-container {
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }

  .hero-image {
    height: 250px;
  }

  .hero-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
  }

  .hero-bonus {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .payment-info th,
  .payment-info td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

.nav {
  padding: 1rem 0;
  background-color: #2A3344;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.header {
  background-color: var(--bg-darker);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 45px;
  width: auto;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
  transform-origin: center;
}

@media (max-width: 992px) {
  .nav-toggle-label {
    display: flex;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background-color: rgb(6, 7, 14);
    ;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .header-buttons {
    width: 100%;
    gap: 1rem;
    margin-top: 2rem;
  }

  .nav-toggle:checked~.nav-wrapper {
    right: 0;
  }

  /* Hamburger to X animation */
  .nav-toggle:checked~.nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked~.nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked~.nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-toggle:checked~.nav-wrapper {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link::after {
    display: none;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .nav-wrapper {
    width: 100%;
  }
}

.nav-link {
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 1rem;
}

.hero-buttons {
  display: flex;
  width: 100%;
  gap: 2rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40px;
}

.main {
  padding: 2rem 0;
  min-height: calc(100vh - 300px);
}

.footer {
  background-color: var(--bg-darker);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-radius: 12px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-section:first-child {
  flex-shrink: 0;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badges img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.footer-bottom {
  padding-top: 1.5rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-section h4 {
  color: #f5f5f5;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #B0B6C4;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .main-nav {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-badges {
    gap: 0.5rem;
  }

  .footer-badges img {
    height: 45px;
  }
}

.content-table {
  background-color: var(--bg-dark);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.content-table h2 {
  color: #f5f5f5;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

.content-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-table li {
  margin-bottom: 0.8rem;
}

.content-table a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.3rem 0;
}

.content-table a:hover {
  color: var(--primary-color);
  transform: translateX(8px);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--bg-dark);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--bg-darker);
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background-color: rgba(52, 97, 255, 0.05);
}

@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  th,
  td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .content-table {
    padding: 1rem;
  }
}

.content-table__table {
  margin-top: 3rem;
}

.content-table__head {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.content-table__wrap {
  background-color: var(--bg-dark);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.main-button {
  display: inline-block;
  padding: 12px 15px;
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  border: none;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  min-width: 120px;
}

.main-button:hover {
  color: var(--text-on-secondary);
  background-color: var(--primary-hover);
  text-decoration: none;
}

ul,
ol {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

ul:not(.footer-links):not(.content-table ul) {
  list-style: none;
}

ul:not(.footer-links):not(.content-table ul) li {
  position: relative;
  padding-left: 1.5rem;
}

ul:not(.footer-links):not(.content-table ul) li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.pros-cons ul {
  list-style: none;
  padding-left: 0;
}

.pros-cons li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.pros-cons li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.pros-cons li.con::before {
  content: '×';
  color: var(--accent-red);
}

.faq-section h2 {
  margin-bottom: 2rem;
}

.faq-section p:nth-child(odd):not(:first-child) {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.faq-section p:nth-child(even) {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--primary-color);
}

@media (max-width: 768px) {

  ul,
  ol {
    padding-left: 1rem;
  }

  .faq-section p:nth-child(even) {
    padding-left: 1rem;
  }
}

.content-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-table li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.content-table li:hover {
  transform: translateX(8px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(8px);
}

.main-section picture {
  display: block;
  width: 100%;
  margin-bottom: 4rem;
}

.main-section picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.main-section__title {
  text-align: left;
  max-width: 540px;
  font-size: 2rem;
}

.main-section .main-section__description,
.entry-content .main-section__description,
.hero-content .main-section__description {
  font-weight: 300;
  text-align: left;
  max-width: 540px;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .main-section picture img {
    border-radius: 4px;
  }
}

.payment-info {
  margin: 3rem 0;
}

.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
}

.payment-info table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.9rem;
}

.payment-info th {
  background-color: var(--bg-darker);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--primary-color);
}

.payment-info td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-info tr:last-child td {
  border-bottom: none;
}

.payment-info tr:hover {
  background-color: rgba(241, 172, 51, 0.05);
}

.payment-notes {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.payment-notes p {
  margin-bottom: 1rem;
}

.payment-notes p:last-child {
  margin-bottom: 0;
}

.payment-notes strong {
  color: var(--primary-color);
}

@media (max-width: 768px) {

  .payment-info th,
  .payment-info td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .payment-notes {
    padding: 1rem;
  }
}

.info-section {
  margin: 3rem 0;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.pros-cons h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.pros ul,
.cons ul {
  margin-bottom: 0;
}

.pros li::before {
  content: '✓';
  color: var(--accent-green);
}

.cons li::before {
  content: '×';
  color: var(--accent-red);
}

.hero-container {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 18px;
  background: radial-gradient(141.42% 141.42% at 100% 0%, #22144a 0%, #111422 100%);
}

.hero-container::before {
  background: linear-gradient(90deg,
      #111422 0%,
      #111422 20%,
      rgba(17, 20, 34, 0.8) 40%,
      rgba(17, 20, 34, 0.4) 60%,
      rgba(17, 20, 34, 0) 100%);
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.hero-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(6, 7, 14, 0.9) 0%,
      rgba(6, 7, 14, 0.7) 30%,
      rgba(6, 7, 14, 0) 100%);
  z-index: 2;
  border-radius: 18px;
}

.hero-image {
  filter: brightness(0.3);
  width: 100%;
  height: 400px;
  max-height: 400px;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  padding: 20px;
  z-index: 3;
}

.hero-title {
  text-align: left;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  line-height: 1.4;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 500;
  display: block;
  margin: 10px 0;
}

.hero-bonus {
  font-size: clamp(1.1rem, 3.5vw, 1.8rem);
  color: var(--accent-purple);
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.main-button {
  margin-bottom: 2rem;
}

.buttons-section {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

@media (max-width: 768px) {

  .header {
    padding: 0.5rem 0;
  }

  .logo img {
    max-height: 35px;
  }

  .hero-image {
    height: 400px;
  }

  .hero-content {
    width: 95%;
    padding: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .main-section {
    padding: 1rem 0;
  }

  .main-section__title {
    margin: 0 auto;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .main-section__description {
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
  }

  /* Table adjustments */
  .table-wrapper {
    margin: 1rem -1rem;
    border-radius: 0;
    width: calc(100% + 2rem);
  }

  .pros-cons {
    margin: 1rem 0;
  }

  .pros-cons h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .footer {
    padding: 2rem 0 1rem;
    margin-top: 2rem;
  }

  .footer-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-badges img {
    width: 100%;
    height: auto;
    max-height: 45px;
  }

  .main-button {
    width: 100%;
    margin: 1rem 0;
  }

  .nav-wrapper {
    padding-top: 60px;
  }

  .main-nav {
    margin-bottom: 2rem;
  }

  .nav-link {
    padding: 1rem 0;
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 300px;
    margin: 1.5rem auto 0;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-container {
    margin-bottom: 1.5rem;
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .hero-image {
    height: 250px;
  }

  .hero-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
  }

  .hero-bonus {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .payment-info th,
  .payment-info td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding);
}

section[id] {
  scroll-margin-top: var(--scroll-padding);
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 8px var(--shadow-color-dark);
  text-decoration: none;
  color: var(--text-primary);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #2451ef 0%, #7444db 100%);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--text-primary);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
}

.logo {
  cursor: pointer;
}

/* Ensure table of contents starts after hero section */
.table-of-contents {
  clear: both;
  margin-top: 2rem;
}

/* FAQ Accordion Styles */
.faq-accordion {
  max-width: 100%;
  margin: 2rem 0;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--bg-dark);
  overflow: hidden;
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background: var(--bg-darker);
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.faq-question:hover {
  background: var(--bg-table);
  border-color: var(--accent-blue);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-primary);
  flex: 1;
}

.toggle-icon {
  font-size: 1.5rem;
  min-width: 20px;
  text-align: center;
  color: var(--accent-blue);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  background: var(--bg-dark);
  opacity: 0;
}

.faq-toggle:checked~.faq-answer {
  max-height: 500px;
  opacity: 1;
  border-top: 1px solid var(--border-color);
}

.faq-toggle:checked~.faq-question {
  background: var(--bg-table);
  border-bottom: 1px solid var(--accent-blue);
}

.faq-toggle:checked~.faq-question .toggle-icon {
  transform: rotate(45deg);
  color: var(--accent-purple);
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-answer p {
    padding: 1rem;
  }
}