  body {
      position: relative;
      overflow-x: hidden;
  }

  body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 10% 20%, rgba(74, 144, 226, 0.03) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(91, 107, 232, 0.03) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(124, 77, 255, 0.02) 0%, transparent 50%);
      z-index: -1;
      animation: backgroundFloat 18s ease-in-out infinite;
  }

  body::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(74, 144, 226, 0.02) 0%, rgba(91, 107, 232, 0.01) 25%, rgba(124, 77, 255, 0.02) 50%, rgba(74, 144, 226, 0.01) 75%, rgba(91, 107, 232, 0.02) 100%);
      z-index: -1;
      animation: backgroundShift 25s ease-in-out infinite;
  }

  @keyframes backgroundFloat {

      0%,
      100% {
          transform: translateX(0) translateY(0);
      }

      33% {
          transform: translateX(30px) translateY(-20px);
      }

      66% {
          transform: translateX(-20px) translateY(30px);
      }
  }

  .terms-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 120px 20px 60px;
  }

  .terms-header {
      text-align: center;
      margin-bottom: 50px;
  }

  .terms-header h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .terms-content {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 40px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
  }

  .terms-section {
      margin-bottom: 30px;
  }

  .terms-section h2 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--text-primary);
      border-bottom: 2px solid var(--accent-color);
      padding-bottom: 10px;
  }

  .terms-section p {
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 15px;
      text-align: justify;
  }

  .terms-section ul {
      color: var(--text-secondary);
      line-height: 1.8;
      margin-left: 20px;
      margin-bottom: 15px;
  }

  .terms-section li {
      margin-bottom: 8px;
  }

  .back-button {
      display: inline-block;
      background: var(--primary-gradient);
      color: white;
      padding: 12px 30px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      margin-top: 30px;
  }

  .back-button:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-medium);
  }

  .contact-info {
      background: var(--bg-card);
      border-radius: 15px;
      padding: 25px;
      margin-top: 30px;
      border: 1px solid var(--border-color);
  }

  .contact-info h3 {
      color: var(--text-primary);
      margin-bottom: 15px;
      font-size: 1.2rem;
  }

  .contact-info p {
      color: var(--text-secondary);
      margin-bottom: 8px;
  }

  .contact-info a {
      color: var(--accent-color);
      text-decoration: none;
  }

  .contact-info a:hover {
      color: var(--text-primary);
  }

  /* Remove blue box after clicking navigation links */

  .nav-menu a:focus {
      outline: none;
      box-shadow: none;
  }

  .lang-switch {
      margin-left: 24px;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 4px 8px;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      transition: all 0.2s ease;
  }

  .lang-switch:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.15);
      transform: none;
      box-shadow: none;
  }

  .lang-switch .lang-active {
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.1);
      padding: 2px 6px;
      border-radius: 8px;
      transition: all 0.2s ease;
  }

  .lang-switch .lang-separator {
      color: rgba(255, 255, 255, 0.3);
      margin: 0 3px;
      font-weight: 300;
  }

  .lang-switch a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      padding: 2px 6px;
      border-radius: 8px;
      transition: all 0.2s ease;
      font-weight: 400;
  }

  .lang-switch a:hover {
      color: rgba(255, 255, 255, 0.8);
      background: rgba(255, 255, 255, 0.05);
      transform: none;
  }