body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f7f6;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 1000px;
  padding: 20px;
}

h1 {
  color: #333;
  margin-bottom: 40px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card h2 {
  color: #fe5531;
  margin-top: 0;
}

.card p {
  color: #666;
  line-height: 1.5;
}

/* Policy Page Styles */
.policy-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.back-link {
  color: #fe5531;
  text-decoration: none;
  font-weight: 500;
}

.lang-switcher {
  display: flex;
  gap: 10px;
}

.lang-btn {
  padding: 8px 16px;
  border: 1px solid #fe5531;
  background: white;
  color: #fe5531;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: #fe5531;
  color: white;
}

.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}

.last-updated {
  color: #888;
  font-style: italic;
  margin-bottom: 20px;
}

h3 {
  color: #333;
  margin-top: 25px;
  border-left: 4px solid #fe5531;
  padding-left: 10px;
}

ul {
  padding-left: 20px;
  line-height: 1.6;
  color: #444;
}

li {
  margin-bottom: 10px;
}
