  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
    }

    .bg {
      background: url('images/hero-bg.jpg') no-repeat center center/cover;
      height: 100%;
      width: 100%;
      position: relative;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.74);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }

    .logo {
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
    }

    .logo img {
      max-width: 200px;
      height: auto;
    }

    .content h1 {
      font-size: 5rem;
      color: #fff;
      margin-bottom: 10px;
    }

    .content p {
      font-size: 2.2rem;
      color: #ddd;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .content h1 {
        font-size: 2.5rem;
      }
      .content p {
        font-size: 1.8rem;
      }
      .logo img {
        max-width: 120px;
      }
    }