input {
    -webkit-appearance: auto !important;
}

.course-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px;
    background-color: #f4f4f9;
    border-radius: 10px;
}

.course-details {
    width: 65%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-details:hover {
    transform: translateY(-10px);
}

.course-details h2 {
    font-size: 26px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.course-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-details img {
    width: 100%;
    border-radius: 10px;
}

.course-sidebar {
    width: 30%;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.course-sidebar h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.course-sidebar ul {
    list-style-type: none;
    padding-left: 0;
}

.course-sidebar ul li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
}

.course-sidebar ul li i {
    margin-left: 5px;
    color: #007BFF;
    font-size: 20px;
}

.course-sidebar ul li strong {
    color: #000;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s;
}

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