    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      width: 100%;
      height: 100%;
      font-family: Arial, sans-serif;
      overflow: hidden;
    }

    .background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }

    video, .fallback-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .content {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      color: white;
      text-shadow: 0 0 10px rgba(0,0,0,0.7);
    }

    h1 {
      font-size: 2.6rem;
      line-height: 1.3;
      margin-bottom: 30px;
	  text-shadow: 6px 6px 12px rgba(0, 0, 0, 1);
    }

    .line2 {
      display: block;
      font-size: 2.1rem;
      font-weight: 600;
    }
    .line3 {
      display: block;
      font-size: 1.7rem;
      font-weight: 500;
      opacity: 0.9;
	  font-style:italic;
    }

    .cta-btn {
      margin-top: 20px;
      background-color: #28a745;
      color: white;
      border: none;
      padding: 15px 30px;
      font-size: 1.2rem;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .cta-btn:hover {
      background-color: #1e7e34;
    }

    /* Mobile & Tablet Override */
    @media (max-width: 1024px) {
      h1 { font-size: 1.5rem; }
      .cta-btn { font-size: 1rem; padding: 12px 26px; }

      .line2 {
        font-size: 1.3rem;
      }
	  
      .line3 {
        font-size: 0.9rem;
      }
    }
