/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Styling the office name */
.office-name {
    margin-bottom: 20px;
    text-align: center;
}

.office-name h1 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
}

/* Styling the notification section */
.notification-section {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 90%;
    max-width: 720px;
    border-radius: 5px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.notification-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.notification-section p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.notification-section p:last-child {
    m
