* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.4;
}

.container {
  /* background-color: #1a1c3d; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center the content horizontally */
  min-height: 100vh; /* Make sure the container takes full viewport height */
}
@media (max-width: 1920px) {
  .container {
    max-width: 100%;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 1140px; /* Reduced the max-width for better readability */
  padding: 0 20px; /* Add some horizontal padding */
  overflow: hidden;
}
@media (max-width: 1920px) {
  .content-wrapper {
    max-width: 100%;
    padding: 0 calc(20px * 0.7); /* reduced padding by 30% */
  }
}

.background-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1; /* Ensure the background is behind the content */
}

.content-area {
  position: relative;
  width: 100%;
}

.columns {
  display: flex;
  flex-direction: row;
  gap: 20px; /* Use a smaller gap for better spacing */
}

@media (max-width: 991px) {
  .columns {
    flex-direction: column;
    gap: 20px; /* Add some gap between columns in mobile view */
  }
}

.first-column,
.secondary-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px; /* Use a fixed border-radius */
  padding: 20px; /* Add padding for better spacing */
  flex: 1; /* Make columns take equal space */
}

@media (max-width: 1920px) {
  .first-column {
    background: #4c89de;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 1920px) {
  .secondary-column {
    background: #4c89de;
    border-radius: 0 40px 40px 0;
  }
}

.highlight-box,
.secondary-box {
  border-radius: 15px; /* Use a fixed border-radius */
  color: #fff;
  text-align: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  font: bold 24px Kanit, sans-serif; /* Use a fixed font size */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 991px) {
  .highlight-box,
  .secondary-box {
    font-size: 20px; /* Adjust font size for mobile view */
  }
}

.image-sections {
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* justify-content: center; */
  /* gap: 10px; */
  /* width: 100%; */
  margin-top: 1px;
}

.highlight-image {
  width: calc(
    50% - 20px
  ); /* Ensure images take half of the container width with some gap */
  max-width: 100px; /* Use a fixed max-width */
  margin: 30px 0; /* Add vertical margin */
}

@media (max-width: 600px) {
  .highlight-image {
    width: calc(100%); /* Make images take full width on small screens */
  }
}
