/* Global reset and base styles */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  display: flex;
  justify-content: center;
  padding: 40px 20px; /* Adds spacing on top and bottom */
  min-height: 100vh; /* Allows scrolling if content is taller than viewport */
  box-sizing: border-box;
}


.container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  width: 90%;
  text-align: left;
  animation: fadeIn 0.6s ease-out;
  margin: 40px;
}

h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
  text-align: center;
}

.subtitle {
  text-align: center;
  font-style: italic;
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 30px;
}

h2 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #1f2937;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #374151;
}

ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 10px;
  color: #374151;
}

.lowlight li {
  color: #9ca3af;
  font-style: italic;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

strong {
  color: #111827;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 650px) {
    .container {
        width: 100%;
        height: 100vh; /* Make the container fill the entire height */
        margin: 0; /* Remove margin to utilize full space */
        border-radius: 0; /* Remove border radius for full-screen effect */
        box-shadow: none; /* Remove shadow for a cleaner look */
    }
    
    body {
        margin: 0;
        padding: 0;
        background-color: #ffffff;
    }
}
