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

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 {
  margin: 60px auto; 
  padding: 0 20px;
  /* padding-left: 450px;
  padding-right: 450px; */
  display: flex;
  flex-direction: column;
  align-items: center;  
  text-align: center;
}

.service-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin-bottom: 40px;
}

.photo-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.photo-buttons button {
  min-width: 110px;
}

button {
  height: 35px;
  width: 120px;
  border: none;
  border-radius: 8px;
  background-color: #9A53B2;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 10px;
}

.service-text {
  list-style-position: inside;
  width: 800px;
}

.service-text h3 {
  color: #7d3990;
}

.service-text p, ul {
  text-align: left;
}

/* .service-list h3 {
  text-align: left;
} */

.service-pdf img {
  width: 100%;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bottom-text p, ul {
  width: 800px;
  text-align: left;
  line-height: 1.3;
}

.bottom-text h3 {
  color: #7d3990;
}

/* DESKTOP */
.carousel-wrapper {
  display: grid;
  grid-template-columns: auto minmax(0, 1000px) auto;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin-top: 30px;
}

.carousel-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;

  font-size: 72px;
  font-weight: 200;
  line-height: 1;

  color: #9A53B2;
  cursor: pointer;

  width: auto;
  height: auto;

  transition: transform 0.2s ease,
              opacity 0.2s ease;
}

.carousel-btn:hover {
  opacity: 0.75;
  transform: scale(1.08);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.service-list {
  width: 100%;
  max-width: 1000px;
}

.mobile {
  display: none;
}

.item {
    display: flex;
    align-items: center;
    /* margin: 12px 0; */
    /* font-size: 18px; */
}

.service,
.price {
    white-space: nowrap;
}

.dots {
    flex: 1;
    border-bottom: 2px dotted #999;
    margin: 0 12px;
}

/* MOBILE */
@media (max-width: 768px) {

  .desktop {
    display: none;
  }
  
  .carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .service-list {
    order: 1;
    width: 100%;
  }

  #left,
  #right {
    font-size: 56px;
  }

  #left {
    order: 2;
  }

  #right {
    order: 2;
    padding-left: 80px;
  }

  .carousel-wrapper {
    gap: 10px;
  }

  .mobile {
    display: inline-block;
  }
}
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;
}

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

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

@media (max-width: 1024px) {
  main {
      padding-left: 50px;
      padding-right: 50px;
  }

  .service-text,
  .bottom-text p,
  .bottom-text ul {
    width: 100%; 
  }

  .service-pdf img {
      max-width: 100%;
      height: auto;
  }

  button {
    height: 30px;
    width: 100px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  main {
      padding-left: 20px;
      padding-right: 20px;
      margin: 20px auto;
  }

  h2 {
      font-size: 24px;
  }

  .service-text h3 {
      font-size: 20px;
  }

  .service-text p, 
  .service-text ul,
  .bottom-text p, 
  .bottom-text ul {
      font-size: 16px;
      text-align: left;
  }

  .service-list {
    flex-direction: column;
    align-items: center;
  }

  .service-pdf {
      margin-top: 15px;
  }

  .header-right {
      width: 100%;
      padding: 15px 0;
  }
}

.service-pdf img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .service-list .service-pdf img, ul {
    width: 100%;    
    max-width: 400px;
    height: auto;   
    margin: 0 auto; 
    display: block;
  }

  .service-text ul {
    margin-left: -20px;
  }

  button {
    height: 30px;
    width: 100px;
  }
}