/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: url('bg.webp') center/cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-size: cover;
}

.containerbox {
  background: rgb(255 255 255);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 40px 20px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.logo {
  max-width: 290px;
  margin: 0 auto 18px auto;
}

.event-title {
  background-color: #034c70;
  color: white;
  padding: 12px 20px;
  border-radius: 0;
  display: inline-block;
  margin: 0 auto;
}

.event-title h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.event-title span {
  font-size: 18px;
  display: block;
}

h1 {
  font-size: 22px;
  font-weight: 700;
  color: #024c70;
  margin-top: 12px;
}

h3 {
  font-size: 16px;
  color: #37474f;
  font-weight: 400;
}

h3 strong {
  color: #07484a;
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.logos-row {
  margin-top: 2px;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.iadvllogo, .ezdlogo {
  width: 120px;
  max-width: 120px;
  flex: 0 0 120px;
  object-fit: contain;
}

.email-link {
  display: block;
  margin-top: 20px;
  color: #0b0b0b;
  font-weight: 500;
  text-decoration: none;
}

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

@media (max-width: 576px) {
  .containerbox {
    padding: 20px;
  }

  .event-title h2 {
    font-size: 17px;
  }
  .event-title span {
    font-size: 16px;
  }

  h3 strong {
    font-size: 16px;
  }
  h1 {
    font-size: 16px;
  }

  h3 {
    font-size: 16px;
  }

  .iadvllogo, .ezdlogo {
    width: 120px;
    max-width: 120px;
    flex: 0 0 120px;
  }

  .logo {
    max-width: 70%;
  }
}
