  :root {
      --bg: #f1efeb;
      --text: #272925;
      --accent: #e9a11b;
      --muted: #8f8e8e;
  }

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Poppins", sans-serif;
  }

  .body {
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
  }

  .head {
      text-align: center;
      padding: 5rem 1rem 2rem;
      justify-content: center;
  }

  .head h1 {
      font-size: 5rem;
      letter-spacing: 1px;
      font-weight: 700;
      position: relative;
      display: inline-block;
  }

  .head h1::after {
      content: "";
      display: block;
      width: 50%;
      height: 3px;
      background: var(--accent);
      margin: 0.5rem auto 0;
      border-radius: 2px;
  }

  .ab_cont {
      max-width: 950px;
      margin: 0 auto;
      padding: 2rem 1rem 6rem;
      text-align: center;
      animation: fadeIn 1.2s ease forwards;
  }

  .ab_cont p {
      font-size: 1.1rem;
      color: var(--muted);
      margin: 1.2rem 0;
  }

  .highlight {
      color: var(--accent);
      font-weight: 600;
  }

  .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
  }

  .card {
      background: #fdfcfc;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
  }

  .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(255, 174, 0, 0.25);
  }

  .card h3 {
      color: var(--accent);
      margin-bottom: 1rem;
      font-size: 1.4rem;
  }

  .card p {
      color: var(--text);
      font-size: 1rem;
      line-height: 1.5;
  }


  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @media (max-width: 600px) {
      headers h1 {
          font-size: 2.3rem;
      }

      .ab_cont p {
          font-size: 1rem;
      }
  }