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

.navbar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    height: 60px;
    padding: 0 20px;    
}

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    padding: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 15px;
}

.nav-item a { 
    text-decoration: none;
    color: #ffffff;
    padding: 5px 2px;
    font-size: large;
    font-weight: 800;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

.nav-item a.active {
    color: white;
    border-bottom: 2px solid #ffffff;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;



    text-align: center;
    flex: 1;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}
    
.redirect-message {
    background-color: #e8f4ff;
    padding: 15px;

    text-align: center;
}

.redirect-link {
    display: inline-block;
    background-color: #0055D2;
    color: white;
    padding: 12px 24px;
    margin: 10px 10px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.redirect-link:hover {
    background-color: #003d99;
    text-decoration: none;
}

.container p {
    line-height: 1.6;
    margin: 10px 0;
    color: #333;
}

.container ul {

    margin-bottom: 20px;
}

.container li {
    margin-bottom: 8px;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: auto;
}