body {
  font-family: 'Lato', sans-serif !important;
    margin: 0;
    padding: 0;
    background-color: #fff;
    background: linear-gradient(135deg, #ffffff 60%, #a5cdf5);
    background-size: cover;
    background-position: center;
    position: relative;
    background: linear-gradient(115deg, #262c5e 10%, #28a694 90%);
  }

header {
    background-color: #fff;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
  }
  
  .logo-link {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .logo {
    width: 5cm;
    height: 0,7cm;
  }
  
  .banner {
    background-color: #08a1ff;
    color: #0d1440;
    padding: 20px;
    text-align: center;
    position: relative;
  }
  
  .banner h1 {
    margin: 0;
  }

  main.terms {
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 28px;
    color: #262c5e;
}

h2 {
    font-size: 22px;
    color: #28a694;
}

.section {
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

@media (max-width: 576px) {
    header {
      flex-direction: column;
      text-align: center;
    }
  
    header .logo-link{
      bottom: -105px;
      left: -20px;
      width: 100px;
    }
  }