.ota-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f5f5f5;
  padding: 10px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}

.ota-image {
  height: 500px; 
  width: 100%;
}


.ota-card {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.ota-content {
  position: absolute;
  right: 19.5%;
  top: 80%;
  color: #BC1823;

}

/* Responsive Design */
@media (max-width: 768px) {
  .ota-content {

    left: 75%;
    top: 110%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 50%;
    
  }
  .ota-image {
     height: 100%; 
     width: 100%;
  }
}

.ota-wrapper {
  display: flex;
  align-items: center;
  max-width: 1400px;
  width: 90%;
  background: #c0b48d;
  padding: 30px;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .ota-card {
    max-width: 1000px;
    height: auto;
  }
}

@media (max-width: 992px) {
  .ota-wrapper {
    flex-direction: column;
    padding: 20px;
  }
  .ota-card {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .ota-content {
    margin-left: 0;
    height: 140px;
    text-align: center;
    /* font-size: small; */
  }

  .ota-container {
 
    margin-top: -360px;
    margin-bottom: -350px;
  }
}

@media (max-width: 576px) {
  .ota-wrapper {
    width: 100%;
    padding: 15px;
  }
  .ota-card {
    width: 100%;
    max-width: 100%;
  }
  .ota-content h2 {
    font-weight: 700;
    font-size: 1.2rem;
  }
 
}

