
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body, html {
      height: 100%;
    }

    .hero {
      background-image: url(/myassets/pexels-ekaterina-bolovtsova-6077123.jpg);
      background-size: cover;
      background-position: center;      
      height: 100vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
      position: relative;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .content {
      z-index: 1;
      text-align: center;
      padding: 20px;
    }

    h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
    }

    p {
      font-size: 1.3rem;
      margin-bottom: 30px;
    }

    .btn {
      background-color: #ffffff;
      color: #333;
      padding: 15px 30px;
      font-size: 1rem;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      text-decoration: none;
      transition: 0.3s;
      margin-top: 100px;
    }

    .btn:hover {
      background-color: #dddddd;
    }

    footer {
      position: absolute;
      bottom: 15px;
      width: 100%;
      text-align: center;
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      z-index: 1;
    }
    .logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
    }

    .logo img {
  width: 150px; /* Adjust width */
  height: auto;
    }

    .btn-wrapper {
  margin-top: 80px; /* 👈 moves button downward */
    }
    
    
    h1, h2 {
  transform: translateY(40px);
}


