:root {
  --brand-blue: #1C068C;
  --brand-orange: #D18219;
  --white-color: #fff;
  --light-gray: #f4f4f4;
  --dark-gray: #1e1e2f;
  --text-gray: #bdbdbd;
}

.contact-section {
  background-color: var(--white-color);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  border: 3px solid black;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-gray);
}

.contact-subtitle {
  color: var(--dark-gray);
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  margin: auto;
  padding: 0.5rem 8%;
  /* border: 3px solid black; */
}

.contact-info,
.contact-form {
  background-color: var(--light-gray);
  border-top: 3px solid var(--brand-orange);
  border-radius: 8px;
  padding: 25px;
  flex: 1 1 420px;
  /* max-width: 420px; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.contact-info .heading h1 {
  color: var(--brand-orange);
  margin-bottom: 20px;
}
.contact-info .heading {
  text-align: center;
}

/* .contact-info .heading p {
  margin: 0 auto 10px;
  max-width: 500px;
  line-height: 1.6;
} */


.contact-info ul {
  margin-top: 30px;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
  color: var(--dark-gray);
}

.contact-info li {
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 16px;
  /* text-align: center; */
}


.contact -info .text {
  flex: 1;
}

.contact-info .text h3{

  font-size: 20px;
  color: var(--brand-blue);
  margin: 0 0 4px 0;

}

.contact-info li i {
  font-size: 30px;
  color: var(--brand-orange);
  /* color: var(--brand-blue); */
}

/* Push social icons down */
.social-icons {
  margin-top: 50px; /* You can adjust this value */
  text-align: center;
}

.social-icons i {
  color: var(--brand-orange);
  font-size: 26px;
  margin-right: 10px;
  cursor: pointer;
}

.contact-form .form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-field,
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.contact-form label {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--text-gray);
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  background: var(--white-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-blue);
}

.btn-send {
  background-color: var(--brand-orange);
  color: var(--white-color);
  border: none;
  padding: 10px 22px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.btn-send:hover {
  background-color: #b86c14;
}

@media (max-width: 600px) {

.contact-info {
  text-align: center;
}

.contact-info li {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.contact-info li .text{
  text-align: center;
}

.social-icons {
  text-align: center;
  
}

}