body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    flex: 1;
}

.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.header-icon {
    width: 50px; /* Adjust the size as needed */
    height: auto;
    padding: 3px;
}

.multicolor-title {
    text-align: center; /* Center the title */
    font-size: 2.5rem; /* Adjust as necessary */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.multicolor-title .black {
    color: black;
}

.multicolor-title .red {
    color: red;
}

.multicolor-title .blue {
    color: #3498db;
}

h2 {
    color: #3498db;
    margin-top: 20px;
    margin-bottom: 0px;
}

p {
    margin: 2px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

address {
    font-style: normal;
    color: #555;
    margin-top: 10px;
}


#bottom-container {
    display: flex;
    justify-content: center; /* Centers the iframe and banner */
    align-items: center;
    flex-direction: column; /* Ensures elements stack vertically */
    padding: 10px; /* Add some spacing */
    box-sizing: border-box; /* Include padding in total width */
  }

#bottom-container iframe {
    max-width: 500px; /* Set a maximum width for large screens */
    aspect-ratio: auto; 
    border: none; /* Remove default borders */
  }
  
  #bottom-container img{
    max-width: 500px; /* Set a max width for large screens */
    height: auto; /* Maintain the aspect ratio of the image */
    margin-top: 20px; /* Add spacing from iframe */
    margin-bottom: 40px; /* Add spacing from iframe */

  }

.sticky-footer {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 1.2rem;
    width: 80%;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px 8px 8px 8px; /* Matches the container's border radius */
}

.sticky-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.sticky-footer a:hover {
    text-decoration: underline;
}
