body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #212529;
}

h1 {
  text-align: center;
  color: #fff;
  background-color: #007bff;
  padding: 1rem;
  border-radius: 8px;
}

h2, h3 {
  color: #343a40;
  background-color: #e9ecef;
  padding: 0.5rem 1rem;
  border-left: 4px solid #007bff;
  border-radius: 4px;
  margin-top: 2rem;
}

/* Paragraphs and lists get background and padding */
p, ul, ol {
  background-color: #ffffff;
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

ol, ul {
  padding-left: 2rem;
  margin-left: 0;
}

ol li, ul li {
  padding-left: 0.25rem;
}

a {
  color: #007aff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.container {
  max-width: 800px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 15px;
  font-weight: 600;
}

input, textarea {
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
}

button {
  margin-top: 20px;
  padding: 12px;
  background-color: #007aff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #005bb5;
}

.footer {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #777;
}

.gallery img {
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80vh;
  margin-top: 5%;
}

.modal-caption {
  color: #ccc;
  font-size: 18px;
  margin-top: 10px;
}

.modal-inner {
  position: relative;
  display: inline-block;
}

.close,
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.close {
  top: 20px;
  right: 35px;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.hero-header {
  background-color: #007bff;
  padding: 2rem;
  border-radius: 12px;
}

.hero-container {
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-logo {
  height: 96px;
  width: 96px;
  border-radius: 16px;
}

.hero-text h1 {
  margin: 0;
  font-size: 1.75rem;
  color: #212529;
}

.hero-text p {
  margin: 0.5rem 0 0;
  color: #333;
}

@media (max-width: 600px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo {
    height: 72px;
    width: 72px;
  }
}