/* --- Global Styles --- */
body {
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  background: #f4f7f6;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- Container --- */
.container {
  max-width: 850px;
  margin: 40px auto;
  background: #ffffff;
  padding: 50px;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 1;
}

/* --- Header --- */
h1 {
  font-size: 2rem;
  text-align: center;
  color: #1a2a3a;
  margin-bottom: 5px;
  border-bottom: 2px solid #2c3e50;
  display: block;
  padding-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.last-updated {
  text-align: center;
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 40px;
  font-style: italic;
}

/* --- Language Section --- */
.language-section {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lang {
  flex: 1 1 100%;
  padding: 30px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.lang:last-child {
  border-bottom: none;
}

.lang h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  margin-top: 25px;
  color: #2c3e50;
  text-align: left;
  font-weight: 700;
  border-left: 4px solid #34495e;
  padding-left: 12px;
}

.lang section:first-child h2 {
  margin-top: 0;
}

p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #444;
  font-weight: 400;
}

strong {
  color: #2c3e50;
  font-weight: 600;
}

a {
  color: #2980b9;
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}

a:hover {
  text-decoration: underline;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  color: #717171;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-top: 2px solid #e8e8e8;
}

footer a {
  color: #4a90e2;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* --- Animations Removed --- */

/* --- Responsive --- */
@media (max-width: 992px) {
  .container {
    margin: 30px;
    padding: 30px;
  }

  h1 {
    font-size: 2rem;
  }

  .language-section {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    margin: 20px;
    padding: 25px;
  }

  .language-section {
    flex-direction: column;
    align-items: stretch;
  }

  .lang {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 1.9rem;
  }

  .lang h2 {
    font-size: 1.4rem;
  }

  p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px;
    margin: 15px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .lang h2 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.95rem;
  }

  footer {
    font-size: 0.9rem;
  }
}