  /* Container for image and text */
  .image-container {
    position: relative;
    display: inline-block;
    text-align: center;
  }

  /* Image styling */
  .image-container img {
    width: 1530px;
    height: 220px;
  }

  /* Centered text styling */
  .centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 55px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-align: center;
  }


/* Responsive Styles */
@media (max-width: 768px) {
  .image-container img {
    width: 100%; /* Scale the image for smaller screens */
    height: auto; /* Maintain aspect ratio */
  }
  .centered-text {
    font-size: 35px; /* Reduce font size for medium screens */
  }
}

@media (max-width: 480px) {
  .image-container img {
    width: 100%; /* Further ensure image fits small screens */
    height: auto;
  }
  .centered-text {
    font-size: 25px; /* Reduce font size for very small screens */
    padding: 0 10px; /* Prevent text from touching screen edges */
  }
}
