#landingpage {
  #splash {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    color: #fff;
    background-image: url('/x/2025/splash.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    .splash-intro {
      text-align: center;
      text-wrap: balance;
    }

    .splash-content {
      max-width: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .button {
      display: inline-block;
      width: auto;
    }
  }

  .banner {
    padding: 30px;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
  }

  .features {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    padding: 10px;

    @media (min-width: 768px) {
      flex-direction: row;
      gap: 40px;
      padding: 40px;
    }

    .feature {
      border-radius: 10px;
      padding: 20px;
      background: #DCC8F6;
      flex: 1;

      h2 {
        font-size: 24px;
      }

      ul {
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;

        li {
          list-style: none;
          padding: 0;
          margin: 0;
        }
      }

      &:nth-child(even) {
        background: #F6C8C8;
      }
    }
  }
}