body {
      margin: 0;
      font-family: Arial, sans-serif;
      align-items: center;
      background-color: #0d6efd;
    }

    .subscribe-section {
      background-color: #0d6efd;
      padding: 50px 20px;
      text-align: center;
    }

    .subscribe-section h2 {
      color: #222;
      font-size: 30px;
      margin-bottom: 30px;
    }

    .subscribe-form {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .subscribe-form input[type="email"] {
      padding: 10px 15px;
      width: 300px;
      border: none;
      border-radius: 6px;
      font-size: 16px;
    }

    .subscribe-form button {
      padding: 10px 20px;
      background-color: white;
      color: #0d6efd;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .subscribe-form button:hover {
      background-color: #e6e6e6;
    }
