* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.event-header {
  background-color: #d2c16a;
  color: #f4f7f9;
  padding: 20px;
  text-align: center;
}

.event-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-header-title {
  font-size: 28px;
  font-family: "Playfair Display", serif;
}

.event-home-btn {
  background-color: green;
  color: #fafafa;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.event-home-btn:hover {
  background-color: #84a66a;
}

.event-terms-section {
  padding: 60px 20px;
  background-color: #f4f7f9;
  color: #000;
}

.event-terms-container {
  max-width: 1000px;
  margin: 0 auto;
}

.event-terms-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #e6dcec;
  font-family: "Playfair Display", serif;
  text-align: center;
}

.event-terms-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  color: #e3e1e6;
}

@media (max-width: 768px) {
  .event-header-container {
    flex-direction: column;
  }

  .event-header-title {
    margin-bottom: 15px;
  }

  .event-home-btn {
    padding: 8px 16px;
  }

  .event-terms-title {
    font-size: 28px;
  }
}

.event-footer {
  background-color: #9a8136;
  color: #f4f7f9;
  padding: 40px 0;
  text-align: center;
}

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

.event-footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.event-footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.event-footer-links li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.event-footer-links li a:hover {
  color: wheat;
}

.event-footer-text {
  font-size: 14px;
  color: #cfc0e8;
}

@media (max-width: 768px) {
  .event-footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .event-footer-logo img {
    max-width: 150px;
  }

  .event-footer-text {
    font-size: 12px;
  }
}
