body {
  font-family: Montserrat, sans-serif;
  color: rgba(110, 110, 110, 1);
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  /* margin: 0 auto; */
  /* padding: 20px; */
}

h1 {
  color: var(--black-font, #00030a);
  font: 700 36px/56px Montserrat, sans-serif;
  margin: 0;
}

p {
  color: var(--black-100, #6e6e6e);
  letter-spacing: 0.18px;
  font: 400 18px/27px Montserrat, sans-serif;
  margin-top: 20px;
}

form {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

label {
  color: var(--black-100, #6e6e6e);
  font: 500 14px/24px Montserrat, sans-serif;
  margin-bottom: 6px;
}

input,
textarea {
  color: var(--black-font, #00030a);
  border-radius: 8px;
  font-family: Montserrat;
  border: 1px solid var(--gray-300, #d0d5dd);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  background-color: var(--base-white, #fff);
  margin-bottom: 12px;
  padding: 10px 14px;
  font: 400 16px/24px Montserrat, sans-serif;
}

textarea {
  height: 100px;
  resize: vertical;
}

.con-inf {
  display: flex;
  margin-top: 6px;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 991px) {
  .con-inf {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .location {
    width: 100%;
    height: 30px;
  }
}

.contact-details {
  justify-content: space-between;
  display: flex;
  gap: 12px;
  width: 100%;
}

.country-list {
  /* display: none; */
  position: absolute;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  top: 100%; /* Changed */
  left: 0;
  width: max-content; /* Changed */
  z-index: 1;
  max-height: 200px; /* Added */
  /* overflow-y: auto; */
}

.country-item {
  padding: 5px;
  cursor: pointer;
}
.location {
  color: var(--black-font, #00030a);
  border: 1px solid var(--gray-300, #d0d5dd);
  font: 400 16px/24px Montserrat, sans-serif;
  border-radius: 8px;
  width: 60px;
  height: 47px;
}
.contact-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  overflow: hidden;
  align-self: center;
  max-width: 100%;
  margin: auto 0;
}

.phone-number {
  color: var(--grey-400, #b7b7b7);
  flex-grow: 1;
  flex-basis: auto;
  font: 400 16px/24px Montserrat, sans-serif;
}
.icon {
  position: relative;
  height: 20px;
  flex-direction: column;
  margin-right: 12px;
}

.phone {
  color: var(--grey-400, #b7b7b7);
  flex-grow: 1;
  flex-basis: auto;
  font: 400 16px/24px Montserrat, sans-serif;
}

/* .privacy-policy {
  display: flex;
  align-items: center;
  margin-top: 24px;
} */
.back-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 45%;
  z-index: -1;
  /* overflow-x: hidden; */
}
.privacy-text {
  color: rgba(110, 110, 110, 1);
  font: 400 18px/24px Montserrat, sans-serif;
}

.privacy-link {
  color: rgba(134, 41, 150, 1);
  font-weight: 500;
  margin-left: 4px;
}

.icon input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

/* Style the custom checkbox */
.icon label {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 6px;
}
.icon input[type="checkbox"]:checked + label {
  background-color: #862996; /* Checked background color */
  border: 1px solid #862996;
}

/* Add a checkmark to the checked state */
.icon input[type="checkbox"]:checked + label::before {
  content: "\2713"; /* Unicode checkmark character */
  font-size: 14px;
  color: #fff; /* Color of the checkmark */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.privacy-policy {
  display: flex;
  align-items: center;
  gap: 14px;
}

.send-button {
  color: var(--Background, #fcfdfe);
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--purpel-600, #862996);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  background-color: var(--purpel-600, #862996);
  margin-top: 32px;
  padding: 12px 20px;
  font: 600 16px/24px Montserrat, sans-serif;
  cursor: pointer;
}
.column-2 {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 51%;
  position: relative;
  margin-left: 20px;
}
@media (max-width: 991px) {
  .column-2 {
    max-width: 51%;
  }
}
.img-2 {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  align-self: stretch;
  overflow: hidden;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .img-2 {
    max-width: 100%;
    margin-top: 40px;
    display: none;
  }
  .column-2 {
    display: none;
  }
  .container {
    width: 100%;
  }
}

.con-cont {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 96px 80px;
}
@media (max-width: 991px) {
  .con-cont {
    padding: 30px 20px;
    justify-content: center;
  }
}
.fn-ln {
  display: flex;
  gap: 20px;
}
@media (max-width: 766px) {
  .fn-ln {
    flex-direction: column;
  }
  .fnln {
    flex-direction: column;
  }
}
.fnln {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
