.imageColumn {
  width: 100%;
  margin: auto;
  padding: 20px; /* Add some padding for better look on small screens */
  padding-top: 120px;
  padding-bottom: 0px;
  box-sizing: border-box;
}

.imageColumn_Block {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns by default */
  gap: 105px; /* Add gap between items */
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  max-width: 1280px;
  color: #000000;
}

.imageColumn_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%;
}

.imageColumn_Column--left {
  grid-area: 1 / 1 / 2 / 2;
}

.imageColumn_Column--right {
  grid-area: 1 / 2 / 2 / 3;
}

.imageColumn_Column > h4,
.imageColumn_Column > h3 {
  color: var(--Lime-Green);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  margin-bottom: 20px;
  margin-top: 15px;
}

.imageColumn_Column > h2 {
  margin: 0;
  color: var(--Black);
  font-family: "Work Sans", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.imageColumn_Column p {
  color: var(--Black);
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 525px;
  margin: 0;
  margin-bottom: 15px;
}

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

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

.imageColumn_Column .button {
  background: var(--Dark-Teal);
  color: var(--White);
  margin-right: 20px;
}

.imageColumn_Column .button:hover {
  background: var(--Blue);
}

.imageColumn_Column .second_button {
  background: var(--Beige);
  color: var(--White);
}

.imageColumn_Column .second_button:hover {
  background: var(--Black);
}

.imageColumn_image {
  margin: 0;
  height: 100%;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .imageColumn_Block {
    gap: 20px; /* Reduce gap for medium screens */
  }

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

@media (max-width: 768px) {
  .imageColumn_Block {
    grid-template-columns: 1fr; /* Single column for small screens */
    gap: 20px; /* Further reduce gap */
    margin-top: 100px;
  }
  .imageColumn_Column--left {
    grid-area: auto;
  }

  .imageColumn_Column--right {
    grid-area: auto;
  }

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

  .imageColumn_Column > h2 {
    font-size: 32px; /* Adjust font size */
  }

  .imageColumn_Column > p {
    font-size: 18px; /* Adjust font size */
  }

  .imageColumn_Buttons {
    text-align: start;
  }

  .imageColumn_Column button {
    font-size: 14px; /* Adjust font size */
    padding: 6px 10px; /* Adjust padding */
  }

  .imageColumn_image img {
    height: 300px; /* Adjust image height */
  }
}

@media (max-width: 480px) {
  .imageColumn {
    padding: 10px; /* Reduce padding for extra small screens */
  }

  .imageColumn_Column > h2 {
    font-size: 28px; /* Further adjust font size */
  }

  .imageColumn_Column > p {
    font-size: 18px; /* Further adjust font size */
  }

  .imageColumn_Column button {
    font-size: 16px; /* Further adjust font size */
    padding: 5px 16px; /* Further adjust padding */
  }

  .imageColumn_image img {
    height: 200px; /* Further adjust image height */
  }
}
