body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #000000;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
}

nav {
    margin: 20px 0;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
}

nav a:hover {
    background: #e8491d;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.footer {
    background: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.big-text {
    font-size: 36px;
    font-weight: bold;
}

.dialog-box {
    width: 400px;
    background: #ffffff;
    border: 2px solid #333;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin: 40px auto;
    overflow: hidden;
}

.dialog-header {
    background: #0078d4;
    color: #ffffff;
    padding: 10px;
    font-weight: bold;
}

.dialog-content {
    padding: 20px;
    text-align: center;
}

.dialog-buttons {
    display: flex;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    background: #f0f0f0;
}

.dialog-btn {
    padding: 8px 20px;
    background: #0078d4;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}

.dialog-btn:hover {
    background: #106ebe;
}