body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #fff8e7;
  color: #333;
  line-height: 1.6;
}

.site-header {
  background: linear-gradient(90deg, #c62828, #f9a825);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 4px solid #8e24aa;
}
.site-header h1 {
  font-family: "Cinzel Decorative", cursive;
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
}
.content .text-block {
  flex: 1 1 45%;
  background: white;
  border: 3px solid #8e24aa;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.content .text-block h2 {
  font-family: "Cinzel Decorative", cursive;
  color: #2e7d32;
  border-bottom: 2px solid #f9a825;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.content .text-block p {
  margin-bottom: 1rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }
  .content .text-block {
    flex: 1 1 100%;
  }
  .site-header h1 {
    font-size: 2rem;
  }
}
.site-footer {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}/*# sourceMappingURL=styles.css.map */