* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
    font-family: 'Roboto Condensed', sans-serif;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url("background.png") bottom center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overlay {
    position:absolute;
    inset:0;
    background: linear-gradient(to top, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 70%) 30%, rgb(0 0 0 / 50%) 55%, rgb(0 0 0 / 30%) 75%);
    }

  
  .content {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 1500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
  }
  
  .left {
    max-width: 60%;
  }
  
  .left h1 {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .left p {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 2rem;
    opacity: 0.95;
  }
  
  .cta {
    display: inline-block;
    align-items: center;
    background: #1FC7F5;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.35rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    margin-top: 1rem;
  }
  
  .icon img {
    width: 1.5rem;
    height: auto;
    filter: brightness(0) invert(1); /* forces white */
    margin-bottom: -0.25rem;
    margin-right: 0.25rem;
  }

  .cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .right {
    text-align: right;
  }
  
  .logo {
    width: 100%;
    max-width: 33rem;
    height: auto;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .content {
        flex-direction: column-reverse;
        text-align: center;
        margin-bottom: 2rem;
    }
  
    .right {
      margin-top: 3rem;
    }
  
    .left h1 {
      font-size: 2.1rem;
    }
  
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .left {
        max-width: 100%;
    }



  }  