@font-face {
  font-family: 'TAModernTimes';
  src: url('../fonts/TA-ModernTimes.otf') format('opentype');
}

body {
  margin: 0;
  padding: 0;
  background: #0f0f0f;
  color: white;
  font-family: 'TAModernTimes', sans-serif;
}

.cgvcgu-container {
  max-width: 1000px;
  margin: 120px auto 60px;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #2c8249;
}

.btn-group {
  margin-bottom: 30px;
}
.toggle-btn {
  background: none;
  border: 2px solid #2c8249;
  color: white;
  padding: 10px 25px;
  margin: 0 10px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.toggle-btn:hover,
.toggle-btn.active {
  background: #2c8249;
}

.content-section {
  display: none;
  text-align: left;
}
.content-section.active {
  display: block;
}

.content-section h2 {
  color: #2c8249;
  font-size: 2rem;
  margin-bottom: 15px;
}

.content-section ul {
  list-style: square;
  margin-left: 30px;
}

a {
  color: #2c8249;
  text-decoration: underline;
}