:root {
  --accent-color: #ff4d4d;
  --glow-color: rgba(255, 77, 77, 0.5);
  --text-color: #e6e6e6;
  --bg-primary: #1a1a1a;
  --bg-secondary: #2c2c2c;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-color);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.section {
  position: relative;
  padding: 60px 0;
}

.section.secondary {
  background-color: var(--bg-secondary);
}

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

.hero-section-wrapper {
  text-align: center;
  padding: 100px 0;
}

.hero-text {
  font-size: 48px;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 20px;
}

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

.section-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.legal-item h3 {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.legal-item p {
  font-size: 16px;
  line-height: 1.5;
}

.legal-link {
  color: var(--accent-color);
  text-decoration: none;
}

.legal-link:hover {
  text-decoration: underline;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.faq-item {
  background-color: var(--bg-primary);
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
}

.faq-question {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent-color);
}

.faq-answer {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px;
  display: none;
  overflow: hidden;
}

.thanks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

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

.thanks-image {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.button.w-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.button.w-button:hover {
  background-color: darken(var(--accent-color), 10%);
}

.main-background-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.main-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
  .hero-text {
    font-size: 36px;
  }

  .section-content h2 {
    font-size: 28px;
  }

  .section-content p {
    font-size: 16px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}
main {
  overflow: hidden;
}
.section.secondary {
  overflow-x: hidden;
}
.thanks-section {
  overflow: hidden;
}