/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.header {
    background-color: #d6e9c6;
    padding: 10px 20px;
    text-align: left;
    font-weight: bold;
}

.breadcrumb {
    background-color: #f5f5f5;
    padding: 10px 20px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.breadcrumb li {
    padding: 5px 10px;
    background-color: #e8e8e8;
    border-radius: 5px;
}

.breadcrumb .active {
    background-color: #b6d7a8;
}

.booking-section {
    padding: 20px;
}

.booking-container {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    max-width: 600px;
    margin: 20px auto;
}

.exam-section {
    margin-bottom: 20px;
}

.modules-section {
    margin-bottom: 20px;
}

.price-section {
    margin: 20px 0;
    font-weight: bold;
}

.buttons {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.back-btn {
    background-color: #ccc;
}

.continue-btn {
    background-color: #4caf50;
    color: white;
}

footer {
    background-color: #f5f5f5;
    padding: 10px 20px;
    text-align: center;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}
