:root{
  --blue: #0e2e63;
  --blue2:#0b2550;
  --bg:#ffffff;
  --muted:#6b7280;

  --panelBorder:#e9edf5;
  --inputBg:#f2f5fa;
  --line:#e6eaf2;

  --max: 1100px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#111827;
  background: var(--bg);
}

.container{
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

/* NAV */
.brand{ display:flex; align-items:center; gap:12px; }
.brand__img{ height:54px; width:300px; }

.nav{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:15px;
  padding-bottom:7px;
}
.nav__menu{
  display:flex;
  gap:10px;
  margin-left:30px;
}
.nav__menu a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  transition: color 0.2s ease;
  white-space:nowrap;
}
.nav__menu a:hover{ color: var(--blue); }
.nav__menu a:not(:last-child)::after{
  content:"|";
  margin-left:10px;
  margin-right:4px;
  color:black;
}

/* PAGEBAR */
.pagebar{
  background: var(--blue);
  color:#fff;
  padding: 22px 0;
}
.pagebar__inner{
  text-align:center;
}
.pagebar h1{
  margin:0;
  font-size: 23px;
  font-weight: 700;
}
.pagebar p{
  margin:4px 0 0;
  font-size: 16px;
  opacity: .9;
  font-weight: 600;
}

/* CONTACT */
.contact{
  padding: 46px 0px 120px;
}

.contact__grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items:start;
}
.contact__toprow{
  display: flex;
  align-items: stretch;
}

.contact__toptext{
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centers text vertically a bit */
  min-height: 210px;        /* increase height of the whole top area */
}

/* Wrap for the image so it matches the height */
.contact__topmedia{
  height: 240px;            /* SAME as top text min-height */
}

/* Make image fill that height without looking compressed */
.contact__img{
  height: 240px;            /* increased from 165px */
  width: 100%;
  object-fit: cover;
}

/* LEFT */
.contact__left h2{
  margin:0 0 12px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.contact__lead{
  margin:0 0 22px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  color:#111;
  max-width: 520px;
}

/* SVG icon style */
.ico{
  width: 16px;
  height: 16px;
  stroke: #94a3b8;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico circle{
  fill:#0f172a;
  stroke:none;
}
/* FORM (WHITE PANEL) */
.form{
  background: #ffffff;

  padding: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}

.field{ position:relative; }
.field select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.field input,
.field select,
.field textarea{
  width:100%;
  border: 1px solid #edf1f7;
  background: var(--inputBg);
  border-radius: 12px;
  padding: 14px 44px 14px 16px;
  font-size: 12px;
  font-weight: 700;
  color:#111827;
  outline:none;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(14,46,99,0.25);
  box-shadow: 0 0 0 4px rgba(14,46,99,0.08);
}

.field textarea{
  resize:none;
  min-height: 240px;
  padding-right: 16px;
}

.field__icon{
  position:absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
}

.field__icon--chev .ico{
  width: 18px;
  height: 18px;
}

.field--textarea .field__icon{ display:none; }

.form__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top: 18px;
  gap: 18px;
}

.form__note{
  font-size: 12px;
  font-weight: 700;
  color:#111;
}

.form__btn{
  border:0;
  background: var(--blue);
  color:#fff;
  height: 46px;
  min-width: 190px;
  border-radius: 10px;
  font-weight: 800;
  cursor:pointer;
  box-shadow: 0 14px 26px rgba(14,46,99,0.18);
}

.form__btn:hover{ background: var(--blue2); }

.form__status{
  margin-top: 12px;
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
}
.form__status.ok{ color: #0a7a2f; }

/* RIGHT */
.contact__right{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.contact__img{
  width:100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  display:block;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

/* INFO CARD */
.info-card{
  background: #f6f8fc;
  border-radius: 14px;
  padding: 22px;
}

.info-card__kicker{
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 6px;
}

.info-card__title{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card__desc{
  font-size: 12px;
  font-weight: 700;
  color:#6b7280;
  line-height: 1.6;
  margin-bottom: 18px;
}

.info-card__list{
  display:flex;
  flex-direction:column;
}

.info-item{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.info-item:first-child{ border-top: 0; }

.info-item__icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background:#ffffff;
  border: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
}

.info-item__icon .ico{
  stroke:#0f172a;
  opacity: .9;
}

.info-item__label{
  font-size: 12px;
  font-weight: 600;
  color:#6b7280;
  margin-bottom: 3px;
}

.info-item__value{
  font-size: 13px;
  font-weight: 600;
  color:#111827;
  line-height: 1.35;
}

/* FOOTER */
.footer{
  background: var(--blue);
  color:#fff;
  padding: 40px 0 0;
}

.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}

.footer__title{
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
}

.footer__text{
  margin: 0;
  max-width: 280px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.footer__col{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.footer__link{
  text-decoration:none;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}
.footer__link:hover{ color:#fff; }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
}
.footer__bottom-inner{
  display:flex;
  justify-content:center;
  text-align:center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* responsive */
@media (max-width: 980px){
  .contact__grid{ grid-template-columns: 1fr; }
  .form__row{ grid-template-columns: 1fr; }
  .contact__left h2{ font-size: 34px; }
}

@media (max-width: 650px){
  .nav__menu{ flex-wrap: wrap; justify-content:flex-end; }
  .contact__left h2{ font-size: 30px; }
}