* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #333;
}

.container {
  max-width: 1200px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 40px;
  text-align: center;
}

.logo {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.tagline {
  font-size: 18px;
  opacity: 0.9;
  font-weight: 300;
}

main {
  padding: 60px 40px;
}

.policies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.policy-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.policy-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.policy-card h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.policy-card p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.policy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: gap 0.3s ease;
}

.policy-link:hover {
  gap: 12px;
  color: #764ba2;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.policy-link:hover .arrow {
  transform: translateX(5px);
}

footer {
  background: #f8f9fa;
  padding: 30px 40px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

@media (max-width: 768px) {
  header {
    padding: 40px 20px;
  }

  .logo {
    font-size: 36px;
  }

  main {
    padding: 40px 20px;
  }

  .policies {
    grid-template-columns: 1fr;
  }

  .policy-card {
    padding: 30px 20px;
  }
}
