body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  margin: 0;
  background-color: #faf9fc;
  color: #333;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #7d3990;
}

a {
  text-decoration: none;
  color: #333;
}

h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

p {
  line-height: 1.6;
}

header {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 8vw;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}

.header-logo img {
  height: 60px;
}

.header-right {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.header-right a {
  text-decoration: none;
  color: #9A53B2;
  font-weight: 600;
}

.header-right a:hover,
a.active {
  color: #7d3990;
  border-bottom: 2px solid #9A53B2;
}

.header-divider {
  height: 6px;
  background-color: #9A53B2;
  width: 100%;
  margin-top: -18px;
}

main {
  max-width: 1100px; 
  margin: 60px auto; 
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;  
  text-align: center;
  font-size: 18px;
}

.about-section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.about-section img {
  margin: 0;
  max-height: 400px;
  width: auto;
  max-width: 45%;
  box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  flex-shrink: 0;
}

.about-text {
  text-align: left;
  flex: 1;
}

.full-width {
  width: 100%;
  text-align: left;
}

.full-width ul {
  padding-left: 20px;
  text-align: left;
}

#creds {
  list-style-type: "- ";
}

.info-columns {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 280px;
}

.column h4 {
  margin-bottom: 12px;
}

.full-width ul {
  padding-left: 20px;
  margin: 0;
}

footer {
  background-color: white;
  margin-top: 60px;
}

.footer-divider {
  height: 6px;
  background-color: #9A53B2;
  border: none;
  margin: 0;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding: 40px 8vw;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.footer-column img {
  height: 50px;
}

footer p {
  font-size: 14px;
  margin: 0;
}

.phone-photo img {
  height: 0;
  width: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #9A53B2;
  cursor: pointer;
}

@media (max-width: 768px) {
  form {
    padding: 30px 20px;
  }

  .hotspot img {
    height: 350px;
  }

  main {
    margin: 40px auto;
  }

  .grid-row {
    grid-template-columns: 1fr;
  }

  form {
    width: 100%;
  }
  
    h2 {
    font-size: 22px;
  }

  h4 {
    font-size: 16px;
  }

  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .header-right {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: none;
  }

  .header-right.active {
    display: flex;
    margin-top: -16px;
    max-height: 300px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .footer-column {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-column img {
    height: 45px;
  }

  footer p {
    font-size: 15px;
  }

  .footer-column a {
    text-decoration: none;
  }

  .about-section {
    display: inline;
    /* flex-direction: column; */
    /* text-align: center; */
    padding: 0 20px;
    max-height: 850px;
  }

  .about-section img {
    height: 0;
    width: 0;
  }

  .phone-photo img{
    width: 90vw;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.3);
  }
  .about-text {
    width: 100%;
    height: auto;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  h2 {
    font-size: 24px;
  }

  .about-text {
    text-align: left;
  }
}

