body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  margin: 0;
  background-color: #faf9fc;
  color: #333;
}

h2 {
  color: #7d3990;
  font-size: 28px;
  margin-bottom: 20px;
}

h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #333;
}

p {
  line-height: 1.6;
  font-size: 16px;
}

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;
}

.main-stuffs {
  display: flex;
}

.main-picture img {
  object-fit: cover;
  margin-left: -98px;
  width: 176px;
  height: 176px;
  border-radius: 176px;
  object-position: 50% 80%;
}

.main-contacts {
  padding-left: 20px;
  text-align: left;
}

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-picture 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;
  }

  .phone-picture img {
    margin-left: auto;
    object-fit: cover;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    object-position: 50% 80%;
  }

  .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;
  }

  .main-picture img {
    width: 0;
    height: 0;
  }
}