body {
    font-family: cursive;
    background-color: #1C1C1D; /* Dark Gray */
    margin: 0;
    padding: 0;
    color: #DEE1E4; /* Light Gray */
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow-x: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #262829; /* Dark Blue */
    padding: 10px 20px;
    width: 100%; /* Make the navbar full width */
    height: 65px;
    box-sizing: border-box; /* Ensure padding is included in the width */
    border-bottom: 1px solid #DEE1E4;
}

.logo {
    color: #DEE1E4; /* Light Gray */
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    color: #DEE1E4; /* Light Gray */
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.nav-links li a:hover {
    background-color: #6E7073; /* Light Hover Color */
    border-radius: 5px;
}

header {
    margin: 20px;
    text-align: center;
    color: #DEE1E4;
}

section {
    margin: 20px auto;
    padding: 40px; /* Increased padding for a larger container */
    background: #262829; /* Dark Gray */
    border-radius: 8px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.5);
    max-width: 1200px; /* Increased max-width for a larger container */
    color: #DEE1E4;
}

.paragraph {
    line-height: 1.6;
    color: #DEE1E4;
}

.courses {
    background: #262829; /* Light Gray */
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 1350px; /* Increased max-width to make the boxes wider */
    text-align: left;
    color: #1C1C1D; /* Dark Gray */
}

.courses h2 {
    color: #DEE1E4; /* Light Gray */
    text-align: center;
    margin-bottom: 20px;
}

.courses ol {
    list-style-type: decimal;
    margin: 10px;
    padding: 10;
    counter-reset: course-counter;
}

.courses li {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    background-color: #262829; /* Light Gray */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    cursor: pointer;
    color: #DEE1E4; /* Dark Gray */
}

.courses li:hover {
    transform: scale(1.02);
}

.courses li a {
    text-decoration: none;
    color: #DEE1E4; /* Dark Gray */
    font-size: 18px;
    transition: color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.courses li a:hover {
    color: #0EA5E9; /* Teal */
    text-decoration: none;
}

.course-description {
    margin-top: 10px;
    color: #DEE1E4; /* Light Gray */
}