<style>
  /* Basic CSS Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

    /* Header styles */
  header {
    background-color: #2d2d66;
    color: #ddd;
    padding: 10px 0;
    text-align: center;
  }

  .banner {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 90px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  /* Body styles */
  body {
    background-image: url('logo.png');
    background-repeat: repeat;
    background-size: 100px 100px;
    background-position: center;
  }

  /* Content styles */
  .content {
    background-image: url('banner.png');
    background-repeat: no-repeat;
    background-position: center;
    font-size: 23px;
    padding: 90px;
    text-align: right;
    color: #ddd; /* Set text color for better readability */
    font-family: Arial, Helvetica, sans-serif; /* Set your preferred font stack */
    background-color: #2d2d66;
}

  /* Responsive styles */
  @media (max-width: 768px) {
    .banner {
      font-size: 20px;
    }
  }
  /* Style for the navigation menu */
  .menu {
    list-style: none;
    padding: 0;
    width: 300px; /* Adjust width as needed */
    background-color: rgba(45, 45, 102, 1);
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-image: url('poster1.png');
    background-size: cover;
    background-position: center;
    border: 5px solid #2d2d66;
  }

  .menu li {
    border-bottom: 1px dotted #ddd;
    position: relative;
  }

  .menu li:last-child {
    border-bottom: 3px;
  }

  .menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s;
    text-align: center;
    font-weight: bold;
    position: relative;
  }

  .menu li a:hover {
    background-color: #2d2d66;
    color: #fff;
  }

  /* Submenu styles */
  .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%; /* Position the submenu to the right */
    color:  rgba(45, 45, 102, 0.85);
    width: 290px; /* Adjust width as needed */
    margin-top: 0; /* Add spacing between main menu and submenu */
    background-image: url('poster.png');
    background-size: cover;
    background-position: center;
    border: 5px solid #2d2d66;
  }

  .submenu li {
    position: relative;
    padding-left: 30px; /* Space for the bullet */
}

.submenu li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%; /* Adjust to vertically center the icon */
    transform: translateY(-50%);
    width: 30px; /* Adjust width and height based on your icon size */
    height: 30px;
    background-image: url('symbol.png');
    background-size: cover; /* Ensures the icon fills the box */
}

  .menu li:hover .submenu {
    display: block; /* Show submenu on hover */
    background-color: rgba(45, 45, 102, 0.85)
  }

  /* Submenu1 styles */
  .submenu1 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%; /* Position the submenu to the right */
    color:  rgba(45, 45, 102, 0.85);
    width: 230px; /* Adjust width as needed */
    margin-top: 0; /* Add spacing between main menu and submenu */
    background-image: url('poster.png');
    background-size: cover;
    background-position: center;
    border: 5px solid #2d2d66;
  }

  .submenu1 li {
    position: relative;
    padding-left: 30px; /* Space for the bullet */
}

.submenu1 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%; /* Adjust to vertically center the icon */
    transform: translateY(-50%);
    width: 30px; /* Adjust width and height based on your icon size */
    height: 30px;
    background-image: url('symbol.png');
    background-size: cover; /* Ensures the icon fills the box */
}

  .menu ul li:hover .submenu1 {
    display: block; /* Show submenu on hover */
    background-color: rgba(45, 45, 102, 0.85)
  }

  ul li:hover > ul {
    display: block; /* Show nested ul on hover */
}

.container {
    display: flex;
    flex-direction: row;
    <!--grid-template-columns: repeat(2, 1fr); /* Three equal columns */-->
    gap: 300px;
    justify-content: center;
    align-items: center;
}

.column {
    padding:6px;
    background-color: rgba(45, 45, 102, 0.75);
    border: 5px solid #2d2d66;
    justify-content: center;
    align-items: center;
    text-align: center; /* Vertically center */
}


.column img {
  max-width: 100%; /* Ensure images don't exceed column width */
  height: 350px; /* Maintain aspect ratio */
  display: flexbox; /* Remove any extra space below images */
  flex-direction:row-reverse;
  text-align: center; /* Vertically center */
  justify-content: center;
  align-items: center; /* Horizontally center */
}

</style>
