/* Apply a modern and clean font globally */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #00391b;
  color: #fefefe;
}

/* Header styles */
.header {
  background-color: #218f02;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

/* Logo container and image styling */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 100%;
}

/* Register button styling */
.register-button {
  background-color: #ff6600;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

/* Main content styling */
.main-content {
  padding: 2rem;
}

.intro-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 1rem auto;
}

.video-wrapper video {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
}

/* Media section styles */
.media-section {
  margin-top: 2rem;
}

.media-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
}

.image-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-gallery img {
  width: 100%;
  border-radius: 10px;
}

/* Register link style */
.register-link {
  display: block;
  width: fit-content;
  margin: 2rem auto;
  background-color: #ff6600;
  color: #fff;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 6px;
}

/* Footer styling */
.footer {
  background-color: #218f02;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.5rem;
}

/* Responsive design for larger screens */
@media (min-width: 768px) {
  .image-gallery {
    flex-direction: row;
    justify-content: space-between;
  }

  .image-gallery img {
    width: 32%;
  }
}
