body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f3f4f6;
      color: #333;
    }

    /* Hero Section */
    .hero {
      background-color: white;
      max-width: 100%;
      margin: auto;
      padding: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .hero h1 {
      font-size: 2em;
      margin-bottom: 10px;
    }

    .hero p {
      color: #555;
      margin-bottom: 20px;
    }

    .hero a {
        margin-top: auto;
        color: #ffffff;
        font-size: 1em;
        text-transform: uppercase;
        border-radius: 6px;
        cursor: pointer;
        border: 1px solid #B62025;
        background: #B62025;
        transition: background 0.2s;
        margin-bottom: 16px;
      display: inline-block;

      padding: 12px 24px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .hero a:hover {
        background-color: #FFFFFF;
  border: 1px solid #B62025;
  color: #B62025;
  box-shadow: none;
  transition: none;
    }

