*{
  padding: 0;
  margin: 0%;
}
.doubt_section {
  width: 100%;
  background-color: #1f6fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35.5px 0;
}

.doubt_container {
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3%;
  flex-wrap: wrap;
}

.doubt_images {
  width: 48%;
}

.doubt_images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.doubt_box {
  width: 48%;
  text-align: center;
}

.doubt-sub-box h2 {
  color: #fff;
  font-size: 45px;
  line-height: 1.2;
}

.doubt-sub-box span {
  color: #1b1d21;
  font-size: 18px;
  font-weight: 400;
}

.btn {
  width: 150px;
  height: 50px;
  border-radius: 6px;
  color: #fff;
  background-color: #262051;
  font-size: 16px;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: rgb(39, 145, 225);
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.btn a {
  color: #fff;
  text-decoration: none;
  font-weight: 550;
}

@media (max-width: 1024px) {
 
  .doubt_container {
    flex-direction: column;
    text-align: center;
  }

  .doubt_images,
  .doubt_box {
    width: 90%;
    margin: 20px auto;
  }

  .doubt-sub-box h2 {
    font-size: 40px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  

  .doubt-sub-box h2 {
    font-size: 34px;
  }

  .btn {
    width: 120px;
    height: 45px;
    font-size: 14px;
  }
}

/* Small Phones */
@media (max-width: 480px) {

  .doubt-sub-box h2 {
    font-size: 26px;
  }

  .btn {
    width: 100px;
    height: 40px;
    font-size: 13px;
  }
}
