:root {
      --accent1: #eb4873;
      --accent2: #6240a2;
      --card-bg: #e54875;
      --orange: #f27521;
      --purple: #6f419d;
      --radius: 14px;
      --muted: #6b7280;
      font-family: "Times New Roman", Times, serif;
    }

html,
body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    /* You can change to 1100 / 1300 */
    margin: 0 auto;
    /* Centers container */
    padding: 0 24px;
    /* Adds margin on left + right */
    box-sizing: border-box;
}

    /* HERO */
    .hero {
      background: linear-gradient(90deg, var(--accent1), var(--accent2));
      color: #fff;
      padding: 60px 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      font-size: 56px;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 18px;
      line-height: 1.6;
      color: #fff;
    }

    .hero img {
      width: 100%;
      border-radius: var(--radius);
      object-fit: cover;
    }

    .register-btn {
      background: var(--orange);
      color: #fff;
      border: none;
      border-radius: 25px;
      padding: 12px 22px;
      font-weight: bold;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      cursor: pointer;
    }

    /* SECTIONS */
    section.section {
      padding: 80px 0;
    }

    section.section:nth-of-type(odd) {
      background: linear-gradient(90deg, var(--accent1), var(--accent2));
      color: #fff;
    }

    section.section:nth-of-type(odd) h2,
    section.section:nth-of-type(odd) p,
    section.section:nth-of-type(odd) li {
      color: #fff;
    }

    section.section:nth-of-type(even) {
      background: #fff;
      color: #0b1220;
    }

    section h2 {
      text-align: center;
      font-size: 40px;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 28px;
    }

   section p,
    section li {
      font-size: 18px;
      line-height: 1.8;
      color: var(--muted);
    }

    ul {
      padding-left: 20px;
    }

    /* CARDS */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      margin-top: 30px;
    }

    .card {
      background: var(--card-bg);
      color: #fff;
      padding: 22px;
      border-radius: var(--radius);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }

    .card h3 {
      font-size: 20px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .card p {
      color: #fff;
    }

    /* CTA */
    .cta-section {
      background: linear-gradient(90deg, var(--accent1), var(--accent2));
      color: #fff;
      text-align: center;
      padding: 90px 20px;
    }

    .cta-section h2 {
      font-size: 42px;
      margin-bottom: 18px;
      color: #fff;
    }

    .cta-section p {
      font-size: 18px;
      margin-bottom: 25px;
      color: #fff;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero h1 {
        font-size: 38px;
      }

      h2 {
        font-size: 32px;
      }
    }