.flyer-footer {
  margin-top: 60px;
}

.flyer-footer h5 {
  color: #fff;
  background-color: #FF3700;
  padding: 6px 10px;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-transform: none;
}

section#flyer {
  padding-top: 80px;
}

.flyer-headline {
  background: #FF3700;
  text-align: center;
  padding: 70px 20px 60px;
  color: white;
}

.flyer-headline h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 500;
}

.flyer-headline h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.3;
}

.flyer-headline p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

.header-orange {
  color: #FF3700;
}

.headline-margin {
  margin-top: 75px !important;
  margin-bottom: 50px !important;
}

.flyer-headline p.text-muted {
  color: white !important;
}

.newspage a button {
  background-color: #FF3700;
  border: none;
  color: white;
  padding: 10px;
  margin: 20px 0;
}

.wo-img-container {
  max-width: 100%;
}

.wo-img-container img {
  max-width: 70%;
}

#flyer ul {
  list-style: none;
  padding-left: 0;
}

#flyer ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6c757d !important;
  line-height: 1.6;
}

#flyer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background-color: #FF3700;
  border-radius: 2px;
}

/* Workshop Details Table Layout */
.workshop-details-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-top: 70px !important;
  margin-bottom: 40px !important;
}

.workshop-details-left {
  flex: 0 0 auto;
}

.workshop-detail-table {
  border-collapse: collapse;
  width: auto;
}

.workshop-detail-table td {
  padding: 4px 0;
  font-size: 15px;
  color: #333;
  vertical-align: top;
  line-height: 1.5;
}

.detail-label {
  font-weight: 600;
  color: #333 !important;
  padding-right: 20px !important;
  white-space: nowrap;
}

.detail-value {
  color: #555 !important;
}

.detail-fee-row td {
  padding-top: 16px !important;
}

.workshop-details-action {
  flex-shrink: 0;
  align-self: flex-end;
}

.text-orange {
  color: #FF3700 !important;
}

.btn-workshop-register {
  display: inline-block;
  background-color: #FF3700;
  color: #fff !important;
  font-size: 22px;
  font-weight: 500;
  padding: 14px 48px;
  text-decoration: none !important;
  border: none;
  border-radius: 0;
  transition: background-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn-workshop-register:hover {
  background-color: #e03000;
}

@media (max-width: 767.98px) {
  .workshop-details-block {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .workshop-details-action {
    align-self: stretch;
  }

  .btn-workshop-register {
    text-align: center;
    width: 100%;
  }
}

/* Team Section Layout */
.flyer-team-member {
  display: block;
  margin-bottom: 35px;
}

.flyer-team-member .image-container {
  width: 100%;
  margin-bottom: 15px;
}

.flyer-team-member .image-container img {
  width: 100%;
  display: block;
}

.flyer-team-member .text-container {
  width: 100%;
}

.team-desc {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .flyer-team-member .image-container {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .flyer-team-member {
    text-align: center;
  }

  .flyer-team-member h5 {
    font-size: 20px;
  }

  .flyer-team-member .text-container {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .flyer-team-member h5 {
    font-size: 22px;
  }
}

section#contact {
  padding-top: 0;
}

/* Maps Banner Styling */
.maps-banner {
  background-color: #FF3700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  color: #fff;
  gap: 40px;
}

.maps-banner-content {
  flex: 1;
  max-width: 350px;
}

.maps-banner-title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.maps-banner-address {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

.maps-banner-address a {
  color: #fff !important;
  text-decoration: underline !important;
  transition: opacity 0.2s ease;
}

.maps-banner-address a:hover {
  opacity: 0.8;
}

.maps-banner-map {
  flex: 0 0 500px;
  width: 500px;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #176087;
  /* default placeholder background as in screenshot */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid #0b3043;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .maps-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 30px;
  }

  .maps-banner-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .maps-banner-map {
    flex: 0 0 auto;
    width: 100%;
  }
}