.common-section-space {
  padding: 140px 0;
}
.contact-form {
  background: #13263f;
  color: #fff;
}
.contact-form h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  margin-bottom: 24px;
}

.contact-address ul li {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  opacity: 0.7;
  color: #fff;
}
.grid-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 108px;
}

.contact-address {
  margin-bottom: 40px;
}
.form {
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(124, 124, 124, 0.08) 100%
  );
  box-shadow: 0 0 24px 0 rgba(11, 18, 32, 0.12);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form input,
textarea {
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  width: 100%;
  height: 48px;
  padding: 8px 12px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding: 8px 12px;
  color: #fff;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #fff;
  opacity: 1; /* ensures it's fully white, some browsers apply opacity */
}
.form button {
  border-radius: 60px;
  background: #4f6bed;
  height: 56px;
  padding: 0 28px;
  display: flex;
  width: 145px;
  gap: 4px;
  align-items: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 30.8px */
  transition: 0.5s;
}
.form button:hover {
    background-color: var(--color-hover-bg);
    color: var(--color-hover-text);
}
.form button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.robot {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  justify-content: space-between;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  width: 310px;
  margin-bottom: 40px;
  padding: 24px;
}

.robot img {
  width: 44px;
  height: 44px;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  width: 100%;
}

.custom-checkbox input {
  display: none; /* hide default checkbox */
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.custom-checkbox input:checked + .checkmark {
  background-color: #007bff;
  border-color: #007bff;
}

.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.robot input[type="checkbox"] {
  width: 22px;
}
@media (max-width: 1024px) {
  .common-section-space {
    padding: 120px 0;
  }
  .grid-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
}

@media (max-width: 600px) {
  .common-section-space {
    padding: 80px 0;
  }
  .contact-form h3{
    font-size: 24px;
  }
  .contact-address ul li {
    font-size: 20px;
}
.contact-address {
    margin-bottom: 24px;
}
.form {
    padding: 20px;
}
.grid-contact {
    gap: 60px;
}
}

@media (max-width: 600px) {
  .grid-contact {
    display: block;
 }
 .robot {
    width: 100%;
 }
}
@media (min-width: 1025px) and (max-width: 1280px) {
.contact-address ul li {
    font-size: 20px;
}
}

