.container1 {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 0 1rem; /* Adjust padding for smaller screens */
}

.section-a {
  margin: 1rem 0;
}

.section-a .container1 {
  display: grid;
  grid-template-columns: 1fr 2fr; /* Two columns with the second being wider */
  grid-gap: 2rem;
  align-items: center;
  justify-content: center;
}

.section-a img {
  width: 200%;
  height: auto;
  margin-right: 0;
}



.section-a .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-a h1 {
  font-size: 2.8rem;
  color: #FBB040;
  margin-top: 1rem;
  margin-left: 35rem;
}

.section-a p {
  margin: 1rem 0;
  text-align: justify;
}

.btn {
  display: inline-block;
  background: #0B76BC;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 30px;
  margin-top: 1rem; /* Space between paragraph and button */
  margin-left: 35rem;

}

.btn:hover {
  background: var(--secondary-color);
  color: #fff;
  background: #084d7b;
}

.overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--overlay-color);
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  .container1 {
    padding: 0 1rem; /* Adjust padding for smaller screens */
  }

  .section-a {
    margin: 1rem 0; /* Adjust margin for smaller screens */
  }

  .section-a .container1 {
    grid-template-columns: 1fr; /* Stack items vertically on smaller screens */
  }

  .section-a img {
    width: 100%; /* Ensure image takes full width on smaller screens */
    margin-right: 0;
  }

  .section-a .text {
    align-items: center; /* Center align text on smaller screens */
  }

  .section-a h1 {
    margin-left: 0; /* Remove left margin for smaller screens */
  }

  .btn {
    margin-left: 0; /* Remove left margin for smaller screens */
  }
}

.section-b {
  background-color: transparent; /* Set background color for the video section */
}

.section-b .container1 {
  width: 600px;
  margin: auto;
  overflow: hidden;
  text-align: center;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 600px;
  background: #000;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  border: 0;
}

/* Adjustments for smaller screens */
@media screen and (max-width: 768px) {
  .section-b .container1 {
    padding: 0 0.5rem; /* Adjust padding for smaller screens */
  }
}


  