body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #333;
    color: white;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.progress-bar {
    width: 80%;
    background: #ddd;
    margin: 20px auto;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: #4caf50;
    transition: width 0.3s ease-in-out;
}

.dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.step-btn {
    width: 80%;
    padding: 10px;
    margin: 10px;
    border: none;
    background-color: #007BFF;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.step-btn:hover {
    background-color: #0056b3;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    padding: 20px;
    margin: 10% auto;
    width: 60%;
    border-radius: 5px;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}
