/* Contact Hero Section */
.contact-hero {
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0;
  position: relative;
  max-width: 100vw;
}
.contact-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}
.contact-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  min-height: 220px;
}
.contact-hero-overlay {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,rgba(30,53,94,0.60) 60%,rgba(35,102,184,0.40) 100%);
  color: #fff;
  padding: 32px 24px;
  text-align: center;
  z-index: 2;
}
.contact-hero-main {
  font-size: 2.1em;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.contact-hero-desc {
  font-size: 1.15em;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .contact-hero-img-wrap {
    max-width: 100vw;
    border-radius: 12px;
  }
  .contact-hero-img {
    border-radius: 12px;
    min-height: 120px;
  }
  .contact-hero-overlay {
    padding: 18px 6px;
    border-radius: 12px;
  }
  .contact-hero-main {
    font-size: 1.3em;
  }
  .contact-hero-desc {
    font-size: 1em;
  }
}

.contact-info {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: flex-start;
  margin: 48px auto 0 auto;
  max-width: 900px;
}
@media (max-width: 900px) {
  .contact-info {
    flex-direction: column;
    gap: 18px;
    margin: 24px 0 0 0;
    max-width: 100%;
    align-items: stretch;
  }
}
.contact-method, .contact-form {
  min-width: 260px;
  max-width: 400px;
}
.contact-method {
  background: #f8f9fa;
  border-radius: 18px;
  padding: 36px 32px 32px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  font-size: 1.13em;
  color: #1a355e;
  margin-bottom: 0;
  text-align: left;
  border: 1px solid #e3e8ee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.contact-method h3 {
  color: #0074c8;
  font-size: 1.25em;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 0;
}
.contact-method p {
  margin: 0 0 14px 0;
  padding: 0 0 0 2px;
  font-size: 1em;
  line-height: 1.7;
  word-break: break-all;
}
.contact-method p:last-child {
  margin-bottom: 0;
}
.contact-method a {
  color: #0074c8;
  text-decoration: underline;
  word-break: break-all;
}
.contact-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 36px 32px 32px 32px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid #e3e8ee;
}
.contact-form label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #1a355e;
  display: block;
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  margin-top: 4px;
  margin-bottom: 12px;
  font-size: 1em;
  box-sizing: border-box;
  resize: vertical;
  background: #f8fafc;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #0074c8;
  outline: none;
  background: #fff;
}
.contact-form textarea {
  min-height: 120px;
}
.contact-form button.btn {
  align-self: flex-end;
  margin-top: 8px;
  font-size: 1.1em;
  padding: 12px 32px;
}
@media (max-width: 600px) {
  .contact-method, .contact-form {
    padding: 18px 8px;
    min-width: 0;
    max-width: 100%;
    border-radius: 12px;
  }
  .contact-info {
    gap: 12px;
  }
} 