/* Main Content */
.main-content {
  padding: 2rem 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Sections */
.section {
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #007BFF;
}

.section-text, .day p, ul {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}

ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* Footer */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.2rem;
  }

  .section-text, ul {
    font-size: 0.9rem;
  }
}