* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


.contact-hero {
  background: url('../assets/about-bg-fp.jpg') center/cover no-repeat;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
}
.contact-hero .container {
  position: relative;
  text-align: center;
  z-index: 1;
}
.hero__title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.breadcrumb {
  font-size: 0.9rem;
}
.contact {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
}
.contact__inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.contact__form-wrapper {
  flex: 2;
}
.contact__form-wrapper h2 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: #1a3559;
}
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group, .form-group-full {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.form-group-full {
  flex: 2;
}
label {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
input, textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}
textarea {
  resize: vertical;
}
.send-btn {
  background: #dba75e;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}
.contact__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-item i {
  font-size: 1.5rem;
  color: #dba75e;
  margin-top: 0.25rem;
}
.info-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}
.info-item p {
  font-size: 0.9rem;
  color: #555;
}