.mainSiteSection {
  width: 100%;
  margin: auto;
  padding: 20px; /* Original padding */
  padding-top: 155px;
  padding-bottom: 119px;
  box-sizing: border-box;
  background: var(--Blue);
}

.mainSiteSection_Block {
  display: grid;
  grid-template-columns: 1fr 55%; /* Two columns by default */
  gap: 69px; /* Original gap */
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  max-width: 1280px;
  color: #000000;
}

.mainSiteSection_Column {
  position: relative;
  display: flex;
  flex-direction: column; /* Arrange children in a column */
  justify-content: center; /* Center children vertically */
  align-items: flex-start; /* Align children to the left horizontally */
  height: 100%;
}

.mainSiteSection_Column:last-child {
  padding-top: 90px;
}

.mainSiteSection_Column > h4 {
  color: var(--Lime-Green);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.mainSiteSection_Column > h2 {
  margin: 0;
  color: var(--White);
  font-family: "Work Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 20px;
}

.mainSiteSection_Column p {
  margin: 0;
  margin-top: 20px;
  color: var(--White);
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 561px;
}

.mainSiteSection_Buttons {
  margin-top: 30px;
  display: inline-block;
}

.mainSiteSection_Buttons button {
  display: inline-flex;
  height: 45px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 25px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  cursor: pointer;
}

.mainSiteSection_Column .button {
  background: var(--Beige);
  color: var(--White);
  margin-right: 20px;
}

.mainSiteSection_Column .button:hover {
  background: var(--White);
  color: var(--Beige);
}

.mainSiteSection_Column .second_button {
  background: var(--White);
  color: var(--Black);
}

.mainSiteSection_Column .second_button:hover {
  color: var(--White);
  background: var(--Black);
}

.mainSiteSection_image {
  margin: 0;
  width: 595px;
  height: 713px;
  position: absolute;
  top: 0;
  right: 0;
}

.mainSiteSection_image img {
  width: 100%; /* Make image responsive */
  height: 713px;
  object-fit: cover;
  margin: 0;
  border-radius: 10px;
}

.mainSiteSection_image video {
  width: 100%;
  height: 713px;
  object-fit: cover;
  margin: 0;
  border-radius: 10px;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .mainSiteSection_Block {
    grid-template-columns: 1fr; /* Single column for medium screens */
    gap: 50px; /* Reduce gap for medium screens */
  }

  .mainSiteSection_Column:last-child {
    padding-top: 50px; /* Adjust padding */
  }

  .mainSiteSection_image {
    display: none; /* Hide image on medium screens and smaller */
  }
}

@media (max-width: 768px) {
  .mainSiteSection {
    padding-top: 100px; /* Adjust padding */
    padding-bottom: 80px; /* Adjust padding */
  }

  .mainSiteSection_Block {
    gap: 40px; /* Further reduce gap */
  }

  .mainSiteSection_Column {
    align-items: center; /* Center align for small screens */
    text-align: center; /* Center text for small screens */
  }

  .mainSiteSection_Column > h2 {
    font-size: 48px; /* Adjust font size */
  }

  .mainSiteSection_Column p {
    font-size: 16px; /* Adjust font size */
    max-width: 100%; /* Expand text width */
  }
}

@media (max-width: 480px) {
  .mainSiteSection {
    padding-top: 80px; /* Further adjust padding */
    padding-bottom: 60px; /* Further adjust padding */
  }

  .mainSiteSection_Block {
    gap: 30px; /* Further reduce gap */
  }

  .mainSiteSection_Column > h2 {
    font-size: 36px; /* Adjust font size */
  }

  .mainSiteSection_Column p {
    font-size: 14px; /* Adjust font size */
  }
}
