body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    max-width: 200px;
}

.header-nav a {
    color: #007bff;
    text-decoration: none;
    margin-left: 20px;
}

.nav-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.nav-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.reminders {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.content-area {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.content-section {
    display: none;
}

.content-section.active {
    display: flex;
    justify-content: space-between;
}

.video-container, .text-container {
    width: 48%;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

.button {
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

.svg-container {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-hire {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.start-now {
    font-size: 1.2em;
    padding: 15px 30px;
}

#current-employee .text-container {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}