* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: white;
    color: #333333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 86px;
    width: 100%;
    position: fixed;
    top: 0;
    background: #033457;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px; /* Adjust as needed */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links a:hover {
    color: #00659C;
}

.hero {
    margin-top: 80px;
    height: 450px;
    background: url('https://placehold.co/1920x450') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.section {
    padding: 50px 20px;
}

h2, h3, h4 {
    color: #00659C;
}

.suite {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
}

.carousel {
    width: 50%;
    height: 300px;
    background: grey;
}

.info {
    width: 50%;
}

.button {
    background: #00659C;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.button:hover {
    background: #033457;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px;
    background: #033457;
    color: white;
    flex-wrap: wrap;
    text-align: center;
}

.footer-column {
    flex: 1;
    padding: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #ffcc00;
}

.recent-content iframe {
    width: 100%;
    max-width: 300px;
    height: 200px;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter input[type="email"] {
    padding: 10px;
    width: 80%;
    margin-bottom: 10px;
    border: 1px solid #00659C;
    border-radius: 5px;
    text-align: center;
}

.newsletter button {
    padding: 10px 15px;
    background: #00659C;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

.newsletter button:hover {
    background: #ffcc00;
    color: #033457;
}

.contact-social {
    text-align: right;
}

.contact-social p {
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: right;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #ffcc00;
}
