/* style.css */
    body {
      font-family: Arial, sans-serif;
      background: linear-gradient(to right, #e0ecff, #f5faff);
      margin: 0;
      padding: 40px 20px;
      text-align: center;
    }

    .container {
      max-width: 90%;
      width: 100%;
      margin: auto;
      background: white;
      padding: 20px 15px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      position: relative;
    }

    @media (min-width: 600px) {
      .container {
        max-width: 700px;
        padding: 30px;
      }
    }

    .logo {
      display: block;
      margin: 0 auto 15px auto;
      width: 160px;
      height: 100px;
      object-fit: contain;
      background-color: #fff;
      padding: 8px;
      box-sizing: border-box;
    }

    @media (min-width: 600px) {
      .logo {
        width: 160px;
        height: 100px;
        padding: 10px;
      }
    }

    h1 {
      text-align: center;
      color: #333;
      margin-top: 10px;
      font-size: 1.5em;
    }
.slogan {
  text-align: center;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95em;
}

    .back-link {
      position: absolute;
      top: 20px;
      left: 20px;
      color: #4CAF50;
      font-weight: bold;
      text-decoration: none;
      font-size: 16px;
    }

    .back-link:hover {
      text-decoration: underline;
    }

    .content {
      text-align: justify;
      font-size: 14px;
      line-height: 1.6;
      margin-top: 20px;
    }
    
     label {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 12px;
      font-weight: bold;
      font-size: 14px;
      cursor: pointer;
    }   