.contact-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}

.contact-information {
  width: 100%;
  max-width: 1200px;
  padding: 40px 80px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 100px;
}

.contact-information .information {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: start;
  justify-content: start; 
}

.contact-information .information h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
}

.contact-information .information p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}

.contact-information .information .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  justify-content: start;
}

.contact-information .information .contact-info-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: start;
}

.contact-information .information .contact-info-item .icon {
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.contact-information .information .contact-info-item .icon i {
  font-size: 24px;
}

.contact-information .information .contact-info-item span {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}

.contact-information .information .contact-social {
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.contact-information .information .contact-social .contact-social-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: start;
}

.contact-information .information .contact-social .contact-social-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  padding: 10px;
  background-color: #f5f5f5;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.contact-information .information .contact-social .contact-social-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-information .form {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: start;
  justify-content: start;
}

.contact-information .form h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: left;
  text-transform: uppercase;
}

.contact-information .form form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}

.contact-information .form form .form-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  justify-content: start;
}

.contact-information .form form .form-group label {
  font-size: 16px;
  font-weight: 500;
  line-height: 10px;
  text-align: left;
}

.contact-information .form form .form-group label .required {
  color: #E42C3E;
  font-size: 16px;
  font-weight: 500;
  line-height: 10px;
  text-align: left;
}

.contact-information .form form .form-group input {
  width: 100%;
  height: 42px;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px 20px;
}

.contact-information .form form .form-group input:focus {
  border-color: #999;
  outline: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.contact-information .form form .form-group textarea {
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Arial", sans-serif;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px 20px;
}

.contact-information .form form .form-group textarea:focus {
  border-color: #999;
  outline: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.contact-information .form form .form-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-information .form form .form-button button {
  width: 100%;
  height: 42px;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  border-radius: 6px;
  text-transform: uppercase;
  background-color: #06c;
  border: none;
  color: #fff;
  cursor: pointer;
}

.contact-information .form form .form-button button:hover {
  background-color: #05a;
}

.contact-map {
  width: 100%;
  height: 550px;
  margin-top: 0;
}

.contact-map .contact-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive styles */
@media (max-width: 768px) {
  .contact-map {
    height: 400px;
  }
  
  .contact-information {
    flex-direction: column;
    gap: 40px;
    padding: 20px;
  }
  
  .contact-information .information{
    width: 100%;
    order: 2;
  }
  .contact-information .form {
    width: 100%;
    order: 1;
  }
}

@media (max-width: 480px) {
  .contact-map {
    height: 300px;
  }
  
  .contact-information {
    padding: 15px;
  }
}