body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1,
h2 {
  color: #2c5282;
  transition: color 0.3s ease;
}

.warning-box {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  transition: background-color 0.3s ease;
}

.info-section {
  margin: 30px 0;
  padding: 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-section:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

ul {
  padding-left: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #2c5282;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #1a365d;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Animation classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Collapsible section styles */
.info-section.collapsible .content {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.info-section.collapsed .content {
  max-height: 0;
}
