* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    color: #333;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 30px; 
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    width: 40px; 
}

main {
    flex: 1;
    padding: 20px;
}

.alert-box {
    background-color: #fff3f3;
    border-left: 2px solid #b31f1f;
    margin: 20px 0;
    padding: 20px;
    display: flex;
    align-items: center;
}

.alert {
    display: flex;
    align-items: center;
}

.alert i {
    font-size: 2rem;
    color: #b31f1f;
    margin-right: 20px;
}

.alert p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.confirmation, .updates {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
}

.confirmation h2, .updates h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #353636;
    font-weight: 500;
}

.confirmation p, .updates p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.confirm-btn {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 75px; 
}

.confirm-btn button {
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    width: 90%;
    height: 40px;
    padding: 10px 20px; 
    border: none;
    cursor: pointer;
}

.confirm-btn button:hover {
    background-color: #005bb5;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0; 
}

.footer {
    background-color: #666;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    width: 100%;
}

.footer-social p {
    font-weight: bold;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
}

.footer-bottom {
    margin-top: 10px;
}

.canada-logo img {
    width: 60px;
    margin-top: 10px;
}

footer {
    flex-shrink: 0;
}
