body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 20px;
        background-color: #f4f4f4;
        color: #333;
        text-align: center;

      }
      h1 {
            color: #000000;
            font-size: 2.5rem;
            margin-bottom: 40px;
        }

        p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

      h2 {
        color: #000000;
        text-align: center;
        margin-bottom: 20px;
        font-size: 2rem;
      }

      /* Video embed container */
      .video-container {
        position: relative;
        height: 0;
        overflow: hidden;
        max-width: 80%; /* Set the maximum width to 80% of the page width */
        margin: 0 auto; /* Center the video on the page */
        background: #000;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding-bottom: 33%; /* 56.25%16:9 aspect ratio */
      }

      .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 10px;
      }

      /* Button styling */
      .button-container {
        text-align: center;
        margin-top: 20px;
      }

      .btn {
        display: inline-block;
        width: 200px;
        padding: 12px 24px;
        font-size: 18px;
        background-color: #000000;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
      }

      .btn:hover {
        background-color: #ff0000;
        box-shadow: 0 4px 8px rgba(255, 0, 0, 0.4);
      }

      /* Modal (banner) styling */
      .modal {
        display: none; /* Hidden by default */
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(
          0,
          0,
          0,
          0.8
        ); /* Black background with opacity */
      }

      .modal-content {
        position: relative;
        margin: 1% auto;
        padding: 1px;
        width: 80%;
        max-width: 700px;
        background-color: black;
        border-radius: 1px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
      }

      .modal-content img {
        width: 100%;
        border-radius: 10px;
      }

      .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        font-weight: bold;
        color: #333;
        cursor: pointer;
      }

      .close-btn:hover {
        color: red;
      }

      /* Footer styling */
      footer {
        margin-top: 40px;
        text-align: center;
        font-size: 0.9rem;
        color: #555;
      }
		/* Style for the button */
        .back-button {
            position: absolute; /* or use fixed for always visible */
            top: 10px;
            left: 10px;
            padding: 10px 20px;
            background-color: #f4f4f4; /* Change design */
            color: black;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            text-decoration: none;
        }

        .back-button:hover {
            background-color: #e0e0e0;
        }