* {
  margin: 0;
  padding: 0;
  font-family: oswald, Arial, sans-serif;
  box-sizing: border-box;
}
img {
  max-width: 100vw;
  height: auto;
  display: block;
}
p {
  background-image: url("");
}
header {
  position: static;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  padding: 30px 120px;
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.9px);
  -webkit-backdrop-filter: blur(2.9px);
  border: 1px solid rgba(255, 255, 255, 0.29);
}

/* Improved Mobile Navigation */
.navbar ul {
  display: flex;
  list-style: none;
  align-items: center;
  overflow: hidden;
}
.navbar li + li {
  margin-left: 35px;
}
.navbar a {
  font-family: Arial, serif;
  font-weight: 500;
  color: #000;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s, font-size 0.3s;
  padding: 8px 16px;
  min-width: 90px;
  display: inline-block;
  box-sizing: border-box;
}
.navbar a:hover {
  color: #14532d;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 4101;
  transition: all 0.3s ease;
}

.nav-toggle img {
  width: 32px;
  height: 32px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.icon-menu {
  color: black;
}
.nav-toggle .icon-close {
  display: none;
}

.nav-toggle.open .icon-menu {
  display: none;
}

.nav-toggle.open .icon-close {
  display: block;
}

.hero {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  font-family: Oswald, "Arial Narrow", Arial, sans-serif !important;
  letter-spacing: 0.06em;
  font-weight: 750;
  color: #000;
}
.hero h1,
.hero p {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeIn 1s ease-out forwards;
  font-size: 40px;
}
.hero h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  animation-delay: 0.2s;
}
.hero p {
  animation-delay: 0.6s;
}
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features {
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
}
.features article {
  flex: 1;
  margin: 0 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.button,
.product-item button,
button,
input[type="submit"] {
  border-radius: 10;
}
.button {
  border-radius: 10;
  color: #000;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
  border: 1px solid #14532d;
  padding: 12px 24px;
  margin: 0 auto 0 auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  width: fit-content;
}
.button:hover {
  background: #14532d;
  color: #fff;
  border-color: #14532d;
  transform: translateY(-2px) scale(1.03);
}
.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: 24px auto 0 auto;
  width: 100%;
}

.button-group .button {
  min-width: 180px;
  box-sizing: border-box;
  margin: 0;
}

.button-group .button-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 8px;
}

.button-group .button-row .button {
  flex: 1 1 0;
  min-width: 0;
}

.product-item {
  height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 10px;
}
.product-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
  border-radius: 0;
}
.product-item button {
  color: #222c36;
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.29);
  padding: 18px 48px;
  margin: 0 auto 0 auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  width: fit-content;
}
.product-item button:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #222c36;
  transform: translateY(-2px) scale(1.03);
}
body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
}
.container {
  max-width: 100%;
  align-items: center;
  margin: 120px auto 40px auto;
  background: #fff;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
h1 {
  text-align: center;
  color: #2c3e50;
}
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
label {
  font-weight: 700;
}
input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
button {
  border-radius: 10;
  color: #222c36;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.29);
  padding: 18px 48px;
  margin: 0 auto 0 auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  width: fit-content;
}
select {
  color: #222c36;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.29);
  padding: 18px 48px;
  margin: 0 auto 0 auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  width: fit-content;
}
.reg-title {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  width: 90vw;
  min-width: 350px;
  max-width: 1400px;
  margin-bottom: 0;
  margin-left: 0;
}
.reg-title-wrapper {
  width: 100vw;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 0;
}
.reg-section-title {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: left;
  margin: 48px 0 24px 0;
  line-height: 1.1;
}
.reg-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 24px 0 0 0;
  width: 100%;
  max-width: 900px;
}
.reg-content-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  gap: 48px;
}
.reg-form-section {
  flex: 2 1 400px;
  max-width: 500px;
  margin-right: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(20, 83, 45, 0.07);
  padding: 32px 28px;
  min-width: 260px;
}
.reg-details {
  flex: 1 1 320px;
  max-width: 400px;
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(20, 83, 45, 0.07);
  padding: 32px 28px;
  min-width: 260px;
}
.reg-details p {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  margin: 0 0 24px 0;
  line-height: 1.5;
  color: #222;
}

.exec-team-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f7f7f7;
  border-radius: 10px;
}
.exec-team-title {
  padding-top: 40px;
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 16px;
}
.main_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: 120px;
  background: #fff;
  gap: 32px;
}
.contact-title-wrapper {
  width: 100vw;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  padding-left: 10px;
}
.contact-title {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  width: 90vw;
  min-width: 350px;
  max-width: 1400px;
  margin-bottom: 0;
  margin-left: 0;
}
.contact-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 24px 0 0 0;
  width: 100%;
}
.contact-content-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  gap: 48px;
}
.contact-form-section {
  flex: 3 1 700px;
  max-width: 800px;
  margin-right: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: 0 0;
  border: none;
  border-bottom: 1.5px solid #bbb;
  box-shadow: none;
  padding: 32px 28px 24px 28px;
  min-width: 320px;
  position: relative;
}
.contact-form-section h2 {
  display: none;
}
.contact-form-section form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-form-section label {
  display: none;
}
.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  font-size: 1.3rem;
  padding: 22px 18px;
  border: none;
  border-bottom: 1.5px solid #bbb;
  background: 0 0;
  color: #222;
  margin-bottom: 0;
  box-sizing: border-box;
  outline: 0;
  transition: border-color 0.2s;
}
.contact-form-section textarea {
  resize: none;
}
.contact-form-section input:focus,
.contact-form-section textarea:focus {
  border-bottom: 1.5px solid #14532d;
  background: rgba(20, 83, 45, 0.03);
}
.contact-form-section input::placeholder,
.contact-form-section textarea::placeholder {
  color: #888;
  font-size: 1.1rem;
  font-style: italic;
  opacity: 1;
}
.contact-form-section::before {
  content: "Fill out the form below to contact us.";
  display: block;
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #222;
  margin-bottom: 18px;
  width: 100%;
  text-align: left;
}
.main_conferences {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  min-height: 100vh;
  background: #fff;
  gap: 32px;
}
.conferences-title-wrapper {
  width: 100vw;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}
.conferences-title {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  width: 90vw;
  min-width: 350px;
  max-width: 1400px;
  margin-bottom: 0;
}
.conferences-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 24px 0 0 0;
  width: 100%;
  max-width: 900px;
}
.conferences-content-row {
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
}
.conference-list-block {
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(20, 83, 45, 0.07);
  padding: 32px 28px;
  min-width: 260px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.conference-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.conference-list li {
  margin-bottom: 18px;
}
.conference-list a {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #14532d;
  text-decoration: none;
  transition: color 0.2s;
}
.conference-list a:hover {
  color: #218838;
}
.main_merch {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  min-height: 100vh;
  background: #fff;
  gap: 32px;
  border-radius: 10px;
}
.merch-title-wrapper {
  width: 100vw;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
}
.product-item {
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(20, 83, 45, 0.07);
  padding: 32px 28px;
  min-width: 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
  border-radius: 0;
}
.sub-confrence-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f7f7f7;
  border-radius: 10px;
}
.committee-img {
  width: 180px;
  height: 180px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin-bottom: 16px;
  background: #eee;
  box-shadow: 0 2px 8px rgba(20, 83, 45, 0.1);
  align-self: center;
}
.committees-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.committee-img {
  width: 180px;
  height: 180px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin-bottom: 16px;
  background: #eee;
}
.committees-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(20, 83, 45, 0.07);
  padding: 32px 28px 24px 28px;
  min-width: 220px;
  max-width: 260px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.committee-name {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-align: center;
}
.committees-p {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 90vw;
  min-width: 350px;
  max-width: 1400px;
}

.committees-all-container {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.committee-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(20, 83, 45, 0.1);
  padding: 40px 36px 36px 36px;
  min-width: 480px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid #14532d;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 600px;
  box-sizing: border-box;
}
.committee-img {
  width: 450px;
  height: 300px;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
  background: #eee;
  box-shadow: 0 2px 8px rgba(20, 83, 45, 0.1);
}
.committee-name {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  color: #000;
  text-align: center;
}
.committee-card .button {
  margin-top: auto;
  width: 100%;
  font-size: 1.1rem;
  padding: 14px 0;
  border-radius: 10px;
}

.executive-team {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.exec-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 40px 20px;
}

.exec-team-card {
  flex: 1 1 300px;
  width: 100% !important;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}
.exec-img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.exec-team-card h1 {
  font-size: 2rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
  color: #000000;
}

.exec-team-card p {
  font-size: 1.5rem;
  font-family: "Oswald", cursive;
  font-weight: 500;
  color: #444;
}
.exec-img {
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: all 0.6s ease-out;
}
.reg-note {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  color: #505050;
  margin: 0 0 24px 0;
  line-height: 1.5;
}
.exec-img.animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.exec-img-chair-vice {
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: all 0.6s ease-out;
  width: 700px;
}
.exec-img-chair-vice.animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.exec-team-img {
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: all 0.6s ease-out;
}
.exec-team-img.animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.topic-comitte {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  padding: 1rem;
}

.topic-comitte h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #333;
}


.chair-letter {
  background-color: white;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chair-letter p {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.topic-comitte h1 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #333;
  padding: 0.8rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 1rem auto;
}
.chair-letter button{
  border: 10px;
}
.logoaspmun {
  max-width: 5%;
  height: auto;
}

.reg-details,
.reg-form-section {
  background: #f7f7f7;
}

.reg-form-section {
  background: #f7f7f7; 
  padding: 32px 28px;
  border-radius: 8px;
  box-shadow: none; 
}

.reg-form-section h2 {
  margin-bottom: 24px;
}

.reg-form-section form input,
.reg-form-section form select {
  width: 100%;
  padding: 20px 18px;
  margin-bottom: 16px;
  font-size: 1.2rem;
  border: none;
  border-bottom: 1.5px solid #bbb;
  background: transparent;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.reg-form-section{
  align-items: center;
}
.reg-form-section form input:focus,
.reg-form-section form select:focus {
  border-bottom: 1.5px solid #14532d; 
  background: rgba(20, 83, 45, 0.03);
}

.reg-form-section form p.reg-note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
}

.reg-form-section form button {
  width: 100%;
  font-size: 1.2rem;
  background-color: transparent;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.reg-form-section form button:hover {
  background-color: #0f3d23;
}
.grade-select {
  width: 100%;
  padding: 20px 18px;                  
  margin-bottom: 16px;               
  font-size: 1.2rem;                  
  border: none;                        
  border-bottom: 1.5px solid #bbb;     
  border-radius: 0;                  
  background: transparent;          
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  color: #000000;                   
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.grade-select:focus {
  border-bottom: 1.5px solid #14532d; 
  background: rgba(20, 83, 45, 0.03);  
}
.success-message {
    color: green;
    font-weight: bold;
    margin-top: 1em;
}

.main_reg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: 120px;
  background: #fff;
  gap: 32px;
}
.reg-title-wrapper {
  width: 100vw;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 10px;
}
.reg-content-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  gap: 48px;
}
.reg-form-section {
  flex: 2 1 400px;
  max-width: 500px;
  margin-right: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: color #555;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(20, 83, 45, 0.07);
  padding: 32px 28px;
  min-width: 260px;
}
.reg-details {
  flex: 1 1 320px;
  max-width: 400px;
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(20, 83, 45, 0.07);
  padding: 32px 28px;
  min-width: 260px;
}
.reg-details p {
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  margin: 0 0 24px 0;
  line-height: 1.5;
  color: #222;
}

/* Mobile Navigation Styles - Improved */
@media (max-width: 900px) {
  .reg-form-section{
    margin-top: 120px;
  }
  
  .hero{
    margin-top: 120px;
  }
  img {
    flex-direction: column;
    align-items: center;
  }
  .button-group {
    max-width: 100%;
  }
  .button-group .button-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .button-group .button {
    min-width: 0;
    width: 100%;
  }

  h1{
    white-space: normal;         
    word-break: keep-all;         
    overflow-wrap: break-word;    
    text-align: center;        
    font-size: clamp(40px, 2vw, 58px) !important; 
    line-height: 1.4;            
  }
  .exec-team-card  {
    width: 100%;
    align-content: left;
  }

  /* Fixed Mobile Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #ffffff;
  }

  /* Fixed Logo Position */
  .logoaspmun {
    position: fixed;
    width: 70px !important;
    height: 70px !important;
    top: 5px;   
    left: 10px; 
    z-index: 10000; 
    max-width: none !important;
  }

/* Fullscreen Navbar */
.navbar {
  height: 100vh; /* Full screen height */
  width: 100vw;  /* Full screen width */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center navbar items vertically */
  align-items: center;     /* Center navbar items horizontally */
  background-color: #000; /* Fully black background */
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  right: 0; /* Position the navbar on the right */
  transform: translateX(100%); /* Initially hidden off-screen to the right */
  transition: transform 0.3s ease; /* Smooth transition for showing/hiding */
  z-index: 4000; /* Ensure it stays above other content */
}

/* Navbar open state: Slide in from the right */
.navbar.open {
  transform: translateX(0); /* Move into view when open */
}

/* Style for the navbar list */
.navbar ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 50px; /* Gap between items */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  text-align: center;
  justify-content: center; /* Center items vertically */
}


.navbar li {
  width: 75%;
  align-self: center;
  margin: 0;
}

.navbar a {
  display: block;
  width: 80%; /* Adjust width to make the links smaller */
  padding: 15px 40px;
  font-size: 1.4rem; /* Smaller font size */
  font-weight: 600;
  color: #fff !important; /* White text */
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 12px;
}

/* Hover effect */
.navbar a:hover {
  color: green !important;
}

/* Toggle Button */
.nav-toggle {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 4101;
  position: fixed;
  top: 15px;
  right: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* When navbar is open, change the toggle icon color to white */


.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle img {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}
.icon-close{
  filter: invert(1);
}




  body,
  html {
    overscroll-behavior: none;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .product-list {
    margin-top: 40px;
  }

  .main_reg {
    padding: 100px 16px 40px;
    gap: 24px;
  }
  
  .reg-title-wrapper {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  
  .reg-title {
    font-size: clamp(2rem, 8vw, 3rem);
    padding: 0;
    text-align: center;
  }
  
  .reg-content-row {
    
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }
  
  .reg-form-section,
  .reg-details {
    
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  
  .reg-form-section {
    padding: 24px 20px;
  }
  
  .reg-details {
    align-items: center;
    text-align: center;
  }
  
  .reg-details p {
    text-align: center;
  }

  /* Mobile Merch Styles */
  .main_merch {
    padding: 100px 16px 40px;
    gap: 24px;
  }
  
  .merch-title-wrapper {
    width: 100%;
    text-align: center;
  }
  
  .merch-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .merch-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .product-item {
    max-width: 100%;
    width: 100%;
    margin: 0;
    min-width: 0;
  }

  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 18px;
  }
  .features {
    flex-direction: column;
    align-items: center;
  }
  .features article {
    width: 90%;
    margin: 10px 0;
  }

  .conferences-content-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .conference-list-block {
    max-width: 100%;
    width: 100%;
    align-items: center;
  }

  .committees-list ul {
    gap: 20px;
  }
  .committees-list li {
    min-width: 180px;
    max-width: 48vw;
  }

  .committees-list ul {
    flex-direction: column;
    gap: 18px;
  }
  .committees-list li {
    max-width: 100%;
    min-width: 0;
  }

  .committees-all-container {
    gap: 18px;
  }
  .committee-card {
    min-width: 160px;
    max-width: 48vw;
    height: 320px;
  }

  .committees-all-container {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .committee-card {
    max-width: 100%;
    min-width: 0;
    height: auto;
  }
}

/* Desktop Navigation - Keep Original */
@media (min-width: 901px) {
  
  .nav-toggle {
  background: transparent; /* Makes the background transparent */
  border: none; /* No border */
  }
  .navbar {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    flex-direction: row !important;
    align-items: center !important;
    transform: none !important;
  }
  .navbar ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .sidebar-overlay {
    display: none !important;
  }
  .product-list {
    margin-top: 60px;
  }
}

* {
  box-sizing: border-box;
}
.conferences-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}
.reg-form-section {
  margin: 0 auto;
  align-self: center;
}

.main_reg {
  align-items: center;
  justify-content: center;
}
