

.contact-page-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 64px;
}

.contact-page-title {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 600;
  color: #353837;
  font-size: 40px;
  line-height: 48px;
  text-align: left;
  margin-bottom: 40px;
}

.contact-row {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .contact-row {
    flex-direction: column;
  }
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  flex: 1;
  background-color: #ffffff;
  border-radius: 40px;
  border: 1px solid rgba(53, 56, 55, 0.12);
}

.contact-info-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.contact-label {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 400;
  color: #353837;
  font-size: 18px;
  line-height: 24px;
  width: 140px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.contact-values {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

@media (max-width: 575px) {
  .contact-info-group {
    flex-direction: column;
    gap: 8px;
  }
  .contact-label {
    width: auto;
  }
}

.contact-value {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 600;
  color: #353837;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
}

.contact-value-email {
  color: #e4a9c0;
}

.contact-value-address {
  font-size: 18px;
}

.contact-hours p {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #353837;
}

.contact-hours-note {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  color: #353837;
}

.contact-form-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  flex: 1;
  background-color: #ffffff;
  border-radius: 40px;
  border: 1px solid rgba(53, 56, 55, 0.12);
}

.contact-form-title {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 600;
  color: #353837;
  font-size: 32px;
  line-height: 38.4px;
  margin-bottom: 10px;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-input-row {
  display: flex;
  gap: 16px;
}

@media (max-width: 767px) {
  .contact-input-row {
    flex-direction: column;
  }
}

.contact-input-wrapper {
  display: flex;
  height: 48px;
  align-items: center;
  padding: 0 24px;
  background-color: #ffffff;
  border-radius: 100px;
  border: 1px solid rgba(53, 56, 55, 0.24);
  flex: 1 1 auto;
  width: 100%;
}

.contact-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 16px;
  color: #353837;
  outline: none;
}

.contact-input::placeholder {
  opacity: 0.6;
}

.contact-textarea-wrapper {
  display: flex;
  padding: 17px 24px;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(53, 56, 55, 0.24);
  min-height: 164px;
}

.contact-textarea {
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 16px;
  color: #353837;
  outline: none;
  resize: vertical;
}

.contact-submit-btn {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 100px;
  background: linear-gradient(310deg, rgba(245, 206, 221, 1) 0%, rgba(228, 169, 192, 1) 100%);
  border: none;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 600;
  color: #353837;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 100%;
  max-width: 200px;
}

.contact-submit-btn:hover {
  opacity: 0.9;
}

.contact-map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(53, 56, 55, 0.12);
}

.contact-map-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

.about-section-title {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 600;
  color: #353837;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .about-section-title {
      font-size: 28px;
      line-height: 34px;
  }
}

.about-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  flex: 1;
  background-color: #ffffff;
  border-radius: 40px;
  border: 1px solid rgba(53, 56, 55, 0.12);
}

.about-subtitle {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 600;
  color: #353837;
  font-size: 24px;
  margin-bottom: 20px;
}

.about-text {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 400;
  color: #353837;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.about-image-box {
  flex: 1;
  min-height: 400px;
  border-radius: 40px;
  border: 1px solid rgba(53, 56, 55, 0.12);
  background-image: url('../image/contact_page/frame-258-2.svg');
  background-size: cover;
  background-position: center;
}

.map-section {
  width: 100%;
  height: 400px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(53, 56, 55, 0.12);
  margin-bottom: 64px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.advantages-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  background-color: #ffffff;
}

.advantages-header {
  text-align: center;
  margin-bottom: 40px;
}

.advantages-title {
  font-family: "Advent Pro", Helvetica, sans-serif;
  font-weight: 600;
  color: #353837;
  font-size: 40px;
  margin-bottom: 16px;
}

.advantages-subtitle {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 600;
  color: #353837;
  font-size: 16px;
  opacity: 0.6;
}

.advantages-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 24px;
  flex: 1;
  min-width: 280px;
  background: linear-gradient(0deg, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 1) 100%), linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: 40px;
  text-align: center;
}

.advantage-icon-wrapper {
  width: 64px;
  height: 64px;
  position: relative;
  margin-bottom: 16px;
}

.advantage-icon-wrapper img {
  max-width: 100%;
  max-height: 100%;
}

.advantage-title {
  font-family: "Advent Pro", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #353837;
  margin-bottom: 12px;
}

.advantage-desc {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 14px;
  color: #353837;
  opacity: 0.8;
}

.icon-profile { background-image: url('../image/contact_page/shape-1-4.svg'); }

