body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  color: #2c3e50;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #004499;
  text-decoration: underline;
}

.container {
  margin: 5vh auto;
  max-width: 800px;
  padding: 0 20px;
  display: flex;
  align-content: center;
  justify-content: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  margin: 40px;
  margin-top: 10vh;
  max-width: 500px;
  flex: 1;
  fill: whitesmoke;
  background-size: contain;
  background-repeat: no-repeat;
  width: 80vw;
  height: 300px;
}

.content {
  background-color: transparent;
  padding: clamp(20px, 5vw, 40px);
  width: 100%;
  box-sizing: border-box;
}

h1 {
  color: #2c3e50;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1em;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  color: #34495e;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin: 1.5em 0 0.8em;
  font-weight: 500;
}

p {
  margin: 1em 0;
  line-height: 1.8;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

footer {
  margin-top: auto;
  background-color: #f8f9fa;
  padding: clamp(15px, 3vw, 20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.copyright {
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  color: #666;
}

.footer-links {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  color: #444;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    margin: 3vh auto;
    padding: 0 15px;
  }

  .content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    margin: 2vh auto;
    padding: 0 10px;
  }

  .content {
    padding: 15px;
  }

  footer {
    padding: 15px 10px;
  }
}

/* Print styles */
@media print {
  body {
    background: white;
  }

  .container {
    margin: 0;
    padding: 20px;
  }

  footer {
    background: none;
    border-top: 1px solid #ddd;
  }
}
