body {
  background-image: url("../images/bg.png");
  padding-bottom: 100px;
}
.faqs-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}
.faqs-container .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faqs-container img {
  width: 502px;
  height: auto;
  margin-bottom: 100px;
}
.faqs-container ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 160px;
}
.faqs-container ul li {
  width: 378px;
  height: 436px;
  backdrop-filter: blur(10px);
  background: rgba(61, 84, 77, 0.24);
  border-radius: 32px 32px 32px 32px;
  padding: 48px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}
.faqs-container ul li .img1 {
  width: 116px;
  height: 20px;
  margin-bottom: 32px;
}
.faqs-container ul li .img2 {
  width: 56px;
  height: 56px;
  margin-bottom: 32px;
}
.faqs-container ul li p {
  font-family: Inter, Inter;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  margin-bottom: 32px;
}
.faqs-container ul li .bot {
  width: 100%;
  display: flex;
  align-items: center;
}
.faqs-container ul li .bot img {
  width: 48px;
  height: 48px;
  margin-right: 8px;
  margin-bottom: 0;
}
.faqs-container ul li .bot .text {
  display: flex;
  flex-direction: column;
}
.faqs-container ul li .bot .text .sp1 {
  font-family: Inter, Inter;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
}
.faqs-container ul li .bot .text .sp2 {
  font-family: Inter, Inter;
  font-weight: 400;
  font-size: 12px;
  color: #adb2b1;
  line-height: 20px;
}
.contact-us {
  width: 100%;
  display: flex;
  align-items: center;
}
.contact-us .container {
  height: 598px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  background: rgba(39, 50, 47, 0.24);
  border-radius: 32px 32px 32px 32px;
}
.contact-us .container .p1 {
  width: 100%;
  font-family: Inter, Inter;
  font-weight: bold;
  font-size: 36px;
  color: #ffffff;
  line-height: 42px;
  margin-bottom: 80px;
}
.contact-us .container .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-us .container .form .item {
  width: 480px;
  height: 64px;
  background: #ffffff;
  border-radius: 100px 100px 100px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 41px;
}
.contact-us .container .form .item input {
  width: 100%;
  height: 100%;
  line-height: 100%;
  border: none;
  text-align: center;
  font-size: 16px;
  border: 1px solid transparent !important ;
  border-radius: 100px 100px 100px 100px;
}

.contact-us .container .form .btn {
  width: 160px;
  height: 64px;
  background: #2bb32a;
  border-radius: 100px 100px 100px 100px;
  font-family: Inter, Inter;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contact-us .container .form .btn:hover {
  transform: scale(1.1);
  transition: all 0.5s;
}
@media (max-width: 1400px) {
  .container {
    width: 1100px;
  }

  .faqs-container ul li {
    width: 340px !important;
    height: 436px;
  }
}
@media (max-width: 1200px) {
  .container {
    width: 1000px;
  }

  .faqs-container ul li {
    width: 320px !important;
    height: 436px;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);

  z-index: 99999999;
}

.modal-content {
  background: white;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#modalConfirm {
  margin-top: 15px;
  padding: 8px 25px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#modalConfirm:hover {
  background: #0056b3;
}
