*, *::before, *::after {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      font-family: 'Cinzel', serif;
      background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
    }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  padding: 0;
  color: #d5d5d5;
}


.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}



    h1 {
      font-size: 3rem;
      margin: 0;
      letter-spacing: 2px;
      background-image: linear-gradient(120deg,#a67c00 20%,#f5e89e 40%,#e3c75f 50%,#f5e89e 60%,#a67c00 80%);
      background-size: 200% auto;
      background-position: -100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shineText 5s linear infinite alternate;
    }

    @keyframes shineText {
      from {
        background-position: -100%;
      }
      to {
        background-position: 200%;
      }
    }
    h3 {
      font-size: 1rem;
      margin: 0;
      letter-spacing: 2px;
      background-image: linear-gradient(120deg,#a67c00 20%,#f5e89e 40%,#e3c75f 50%,#f5e89e 60%,#a67c00 80%);
      background-size: 200% auto;
      background-position: -100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    p {
      margin: 0;
      letter-spacing: 1px;
    }

    .intro-text {
      max-width: 100%;
      width: 90%;
      margin: 2rem auto 1rem;
      text-align: left;
      color: #e0e0e0;
      font-size: 0,7rem;
      line-height: 1.7;
    }

    .intro-text p {
      margin-bottom: 1.5rem;
      text-align: left;
    }

    form {
      max-width: 500px;
      margin: 2rem auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    input, label, textarea {
      padding: 0.8rem;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
    }

    input[type="submit"] {
      background-color: #d4af37;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    input[type="submit"]:hover {
      background-color: #f5e89e;
    }

    .checkbox-container {
      text-align: left;
      font-size: 0.9rem;
      display: flex;
      gap: 0.5rem;
      align-items: flex-start;
      color: #ccc;
    }

    .checkbox-container input[type="checkbox"] {
      margin-top: 5px;
      transform: scale(1.2);
    }

    .error {
      color: #ff5555;
      font-size: 0.9rem;
      display: none;
    }

.footer {
  width: 100%;
  padding: 2rem 1rem;
  background: #111;
  text-align: center;
  margin-top: 4rem;
  border-top: 1px solid #333;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-link {
  color: #d4af37;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f5e89e;
}


.language-switcher {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

.language-switcher a {
  color: #d4af37;
  text-decoration: none;
  margin: 0 0.25rem;
  transition: color 0.3s ease;
}

.language-switcher a:hover {
  color: #f5e89e;
}
