  <style>
    html {
      box-sizing: border-box;
      font-size: 20px;
      overflow-x: hidden;
    }
    *, *:before, *:after {
      box-sizing: inherit;
    }
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      font-size: 16px;
      background: #fff;
      overflow-y: auto;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header {
      background-color: #333;
      color: white;
      width: 100%;
      position: relative;
      padding: 0;
    }

    .header-content-flex {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 90px;
      position: relative;
    }

    .logo-block {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .logo {
      max-width: 340px;
      width: 94vw;
      min-width: 120px;
      height: auto;
      display: block;
      margin-top: 10px;
      margin-bottom: 2px;
    }

    .tagline {
      font-size: 1.13em;
      color: #f0f0f0;
      font-style: italic;
      margin-top: 2px;
      margin-bottom: 10px;
      text-align: center;
    }

    nav.top-nav {
      background-color: #fff;
      padding: 8px 0;
      text-align: center;
    }

    nav.top-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 18px;
    }

    nav.top-nav li {
      display: inline-block;
    }

    nav.top-nav a,
    .button-row button {
      text-decoration: none;
      color: white;
      background: #444;
      padding: 8px 20px;
      border-radius: 4px;
      transition: background 0.3s;
      font-weight: bold;
      border: none;
      cursor: pointer;
      font-size: 1.13em;
    }

    nav.top-nav a:hover,
    nav.top-nav a.active,
    .button-row button:hover {
      background: #e9700d;
      color: white;
    }

    main {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1 0 auto;
      padding-bottom: 40px;
    }

    main > section {
      width: 100%;
      max-width: 95vw;
      margin: 5px 0 30px 0;
      background: #fff;
      border-radius: 13px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
      padding: 1.5em 2vw;
      box-sizing: border-box;
    }

    .event-top {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 32px;
    }

    .event-image {
      display: block;
      max-width: 700px;
     
    }

    .event-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .button-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 12px;
      gap: 20px;
    }

    .event-title {
      font-size: 1.55em;
      text-align: left;
      margin-bottom: 0.1em;
      margin-top: 0.1em;
    }

    .event-datetime {
      font-size: 1.3em;
      font-weight: bold;
      color: #222;
      text-align: center;
      margin-top: -30px;
    }

    .event-description {
      margin-top: -5px;
      font-size: 1.6em;
      color: #555;
      line-height: 1.3;
    }

    .event-description p {
      white-space: pre-line;
      margin: 0.4em 0;
      text-align: center;
    }

    .content-section {
      display: none;
    }

    .content-section.active {
      display: block;
    }

    footer {
      text-align: center;
      padding: 10px 0;
      background-color: #333;
      color: white;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    footer p {
      margin: 2px 0;
    }

    .footer-link {
      color: white;
      text-decoration: none;
      margin: 1px;
    }

    .footer-link:hover {
      text-decoration: underline;
    }

    input, textarea, select { font-size: 18px !important; }

    @media (max-width: 1100px) {
      main > section {
        padding-left: 3vw;
        padding-right: 3vw;
        max-width: 99vw;
      }
      .event-title {
        font-size: 1.75em;
        text-align: center;
        margin-bottom: 0.4em;
      }
      .event-datetime {
        font-size: 1.8em;
      }
      .event-top {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
      .event-image {
        width: 100%;
        max-width: 100vw;
        margin-bottom: 10px;
      }
      .event-details {
        width: 100%;
        padding-left: 0;
        min-width: unset;
        font-size: 1.4em;
        text-align: center;
      }
      .event-description {
        margin-top: 4px;
      }
      .btn,
      .back-button,
      .button-row button,
      .nav-button,
      nav.top-nav a {
        font-size: 1.6em;
        padding: 12px 24px;
      }
    }

    @media (max-width: 800px) {
      main > section {
        padding-left: 3vw;
        padding-right: 3vw;
        max-width: 99vw;
      }
      .event-title {
        font-size: 1.2em;
        text-align: center;
        margin-bottom: 0.4em;
      }
      .event-datetime {
        font-size: 1.1em;
        margin-top: -10px;
      }
      .event-top {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
      .event-image {
        width: 100%;
        max-width: 100vw;
        margin-bottom: 10px;
      }
      .event-details {
        width: 100%;
        padding-left: 0;
        min-width: unset;
        font-size: 1.0em;
        text-align: center;
      }
      .event-description {
        margin-top: 4px;
      }
      .btn,
      .back-button,
      .button-row button,
      .nav-button,
      nav.top-nav a {
        font-size: 1.0em;
        padding: 6px 15px;
      }
    }
.social-floating {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
  background-color: #111;
}

.social-floating a img {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
}

.social-floating a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

  </style>