/* Contact Info Block Styles */
.contact-info-container {
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
  text-align: center;
}

.contact-info-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  margin-block: 0;
}

.contact-subtitle {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.contact-details:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 50%;
  height: 1px;
  border-top: 2px dashed #999;
  transform: translateX(-50%);
}

.contact-address,
.contact-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #ffd700;
  border-radius: 50%;
  margin-bottom: 15px;
}

.address-text,
.email-text .contact-info-email {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  text-decoration: none;
}

.address-text:hover,
.email-text .contact-info-email:hover {
  color: #ee513b;
}

.email-text .contact-info-email:focus {
  outline: none;
}

.email-text .contact-info-email:active {
  color: #000;
}

@media (max-width: 768px) {
  .contact-info-container {
    padding: 0px 0px;
  }

  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .contact-details:before {
    display: none;
  }

  .contact-address,
  .contact-email {
    width: 100%;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px){
  .contact-subtitle{
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .contact-title {
    font-size: 30px;
  }

  .contact-subtitle {
    font-size: 24px;
  }

}