:root {
  --primary-bg: #060810;
  --accent: #00E399;
  --light-text: #ccc;
  --card-bg: rgba(255,255,255,0.05);
}

.copytrade-section {
  background: var(--primary-bg);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.copytrade-section .content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.copytrade-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.copytrade-section .subhead {
  font-size: 1.2rem;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.subhead span {
    color: #00E399;
    font-weight: bold;
}

.btn-copy-trading {
  background: var(--accent);
  color: var(--primary-bg);
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-size: 1.3rem;
  text-decoration: none;
  display: inline-block;
  margin: 1.5rem 0;
  transition: background 0.3s;
}
.btn-copy-trading:hover {
  background: #26c7a0;
  color: white;
}

.plan {
    text-align: left;
    font-weight: bold;

}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
  margin: 2rem auto;
  font-size: 1.1rem;
  color: var(--light-text);
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 30px;
}

.benefits .plan {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 8px;
    margin-top: 30px;
    font-size: 20px;
    color: white;
}
.benefits strong {
  color:#26c7a0;
}

blockquote {
  font-style: italic;
  /* color: var(--light-text); */
  margin: 2rem auto;
  max-width: 850px;
  color: goldenrod;
}
blockquote cite {
  display: block;
  color: white;
  margin-top: 1rem;
}


.btn-copy-trading {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .copytrade-section h1 {
    font-size: 2rem;
  }
  .copytrade-section .subhead {
    font-size: 1.1rem;
  }
  .benefits {
    text-align: center;
    align-items: center;
  }
  .trust-notes {
    text-align: center;
  }
}
