body {
    font-family: 'Outfit', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    padding-bottom: 20px;
}

header h1 {
    color: #5a5a5a;
    font-size: 2.5rem;
}

header p {
    color: #7a7a7a;
}

.course-details {
    padding: 20px 0;
}

.course-details h2 {
    color: #4a4a4a;
}

.enrollment-form {
    background: #e6f7ff;
    padding: 20px;
    border-radius: 10px;
}

.enrollment-form h2 {
    color: #3e3e3e;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    display: block;
}

input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

input:focus, select:focus {
    border-color: #3a8dff;
    outline: none;
}

.btn {
    background-color: #3a8dff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #2a6bbf;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #343a40;
    color: white;
    margin-top: 20px;
}
