/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light background color */
    color: #333; /* Neutral text color */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Banner Styles */
.banner {
    width: 100%;
    background-color: #0e4b73; /* Dark blue background */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-content {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text {
    font-size: 1.5em;
    font-weight: bold;
}

.banner-actions {
    display: flex;
    align-items: center;
}

.visit-button {
    background-color: #ffffff; /* White button */
    color: #0e4b73; /* Dark blue text */
    border: none;
    padding: 8px 16px;
    margin-right: 20px; /* Increased space between the button and the logo */
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.visit-button:hover {
    background-color: #d1e7f5; /* Light blue background */
    color: #0e4b73; /* Dark blue text */
}

.logo {
    height: 40px;
    width: auto;
}

/* Main Container */
.container {
    width: 90%;
    max-width: 1200px;
    height: 80%;
    max-height: 735px;
    background-color: #ffffff; /* White container background */
    border: 2px solid #0e4b73; /* Dark blue border */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    padding: 10px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    background-color: #d1e7f5; /* Light blue footer background */
    color: #0e4b73; /* Dark blue text */
    font-size: 0.9em;
    border-radius: 4px;
    
}
