/* RESET (ONLY ONCE) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #eef3f3;
}


/* =========================
   SECTION 1 (Address Section)
========================= */
.contact-section {
  padding: 80px 120px;
  max-width: 1200px;
}

/* Heading */
.contact-section h1 {
  font-size: 60px;
  font-weight: 700;
  color: #0b1f4b;
  line-height: 1.1;
}

/* Line */
.line {
  width: 60px;
  height: 2px;
  background: #0b1f4b;
  margin: 20px 0;
}

/* Subtitle */
.subtitle {
  color: #5f6b7a;
  max-width: 300px;
  margin-bottom: 60px;
  font-size: 16px;
}

/* Address Block */
.address-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
}

/* Big Numbers */
.number {
  font-size: 70px;
  color: transparent;
  -webkit-text-stroke: 1px #c5ced6;
  margin-right: 20px;
  font-weight: 700;
}

/* Details */
.details h3 {
  color: #0b1f4b;
  margin-bottom: 10px;
}

.details p {
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.6;
}

.contact-info {
  margin-top: 10px;
}


/* =========================
   SECTION 2 (Form Section)
========================= */
.contact-form-section {
  display: flex;
  justify-content: space-between;
  padding: 100px 150px;
  gap: 100px;
}

/* LEFT SIDE */
.left {
  width: 50%;
}

.left h1 {
  font-size: 60px;
  font-weight: 700;
  color: #0b1f4b;
  line-height: 1.1;
}

/* Image */
.image-box img {
  width: 100%;
  max-width: 420px;
  display: block;
}

/* RIGHT SIDE */
.right {
  margin-top: 18%;
  width: 50%;
  display: flex;
  align-items: center;
}

.form {
  width: 100%;
}

/* Inputs */
.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #0b1f4b;
  background: transparent;
  margin-bottom: 15px;
  outline: none;
  font-size: 14px;
}

/* Row Inputs */
.row {
  display: flex;
  gap: 15px;
}

/* Textarea */
textarea {
  height: 120px;
  resize: none;
}

/* Button */
button {
  padding: 12px 25px;
  border: 1.5px solid #0b1f4b;
  background: transparent;
  color: #0b1f4b;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #0b1f4b;
  color: #fff;
}