/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover, nav a.active {
  color: #0066cc;
}

/* Hero section */
.hero {
  padding: 60px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.coming-soon {
  font-size: 1.2rem;
  color: #666;
}

/* Content section */
.content {
  padding: 60px 0;
}

.content h1 {
  margin-bottom: 30px;
  color: #222;
}

.placeholder-text {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 5px;
  font-style: italic;
  color: #777;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.policy-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333;
}

.policy-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #444;
}

.policy-content p {
  margin-bottom: 15px;
}

.policy-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.policy-content .last-updated {
  margin-bottom: 25px;
  color: #666;
}

.policy-content a {
  color: #0066cc;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

/* Footer styles */
footer {
  background-color: #f1f1f1;
  padding: 20px 0;
  text-align: center;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (min-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .logo {
    margin-bottom: 0;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}