/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 40px;
}

.header-logo a {
  font-size: 24px;
  font-weight: 500;
  color: #1a73e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-logo a:hover {
  color: #155ea5;
}

header h1 {
  font-size: 36px;
  margin-top: 10px;
  color: #222;
}

/* Main Content */
.policy-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out;
}

.policy-section {
  margin-bottom: 30px;
}

.intro,
.consent {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.consent {
  font-weight: 500;
  background-color: #f1f1f1;
  padding: 15px;
  border-left: 4px solid #1a73e8;
  border-radius: 4px;
}

h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1a73e8;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

p {
  font-size: 15px;
  color: #444;
}

ol {
  margin-left: 20px;
}

li {
  margin-bottom: 8px;
}

.contact {
  font-size: 15px;
  color: #666;
}

.contact a {
  color: #1a73e8;
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 28px;
  }

  .policy-card {
    padding: 20px;
  }

  .intro,
  .consent {
    font-size: 15px;
  }
}