.image-container {
  position: relative;
  width: 100%; /* Full width */
  height: auto; /* Adjust height as needed */
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.image-container .text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; /* Text color */
  text-align: center;
}



.image-filter-container {
  position: relative;
  display: block;
  width: 100%; 
}
.image-filter-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 28, 52, 0.80); /* Red overlay with 50% transparency */
  mix-blend-mode: multiply; /* Combine color with image */
  pointer-events: none; /* Allow image interaction */
}




.carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    /*max-width: 600px;*/
    margin: auto;
    overflow: hidden;
}
.carousel-slides-wrapper {
    display: flex;
    transition: transform 0.5s ease; /* Smooth sliding */
    width: 100%;
}
.carousel-slide {
    min-width: 100%; /* Each slide takes up full width */
    flex-shrink: 0;
}
.carousel-slide img {
    width: 100%;
    display: block;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}



.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 20px;
  background-color: #F8F5FF; /* Darker blue for button */
  color: #000000;
  font-family: sans-serif;
  font-weight: 900;
  /*text-decoration: none;*/
  border-radius: 7px;
}

.button:hover {
  background-color: #4D83A1; /* Darker shade for hover */
}







.sidetitle-container {
  display: inline-block; /* Keeps the title and underline together */
  text-align: left; /* Aligns text to the left */
  margin: 20px 0; /* Adds spacing around the title */
}

.sidetitle {
  color: white; /* Adjusts text color */
  font-size: 40px; /* Adjust the size as needed */
  font-family: sans-serif; /* Use a modern font */
  font-weight: 900; 
  margin: 0; /* Removes default margins */
}

.sidetitle-underline {
  width: 50px; /* Adjust width of the underline */
  height: 5px; /* Height of the underline */
  background-color: rgba(255, 255, 255, 0.7); /* Color and transparency */
  margin-top: 5px; /* Adds some spacing below the text */
}




.text-container {
  text-align: center; /* Align all text to the center */
  background-color: #4a90a4; /* Matches the blue background */
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #fff; /* White text for contrast */
}

.title {
  font-size: 44px; /* Larger size for title */
  font-weight: bold;
  margin-bottom: 10px;
  font-family: sans-serif;
  font-weight: 900;
}

.subtitle {
  font-size: 30px; /* Slightly smaller for subtitle */
  font-weight: 500;
  margin-bottom: 20px;
  font-family:  sans-serif;
  font-weight: 500
}

.main-text {
  font-size: 26px; /* Standard size for the main text */
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: sans-serif; 
  font-weight: 500
}