  .course-container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .course-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #333;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 15px;
        }
        
        /* Sezione immagine migliorata per visualizzazione completa */
        .image-section {
            margin-bottom: 30px;
        }
        
        .course-image-container {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 0 auto;
        }
        
        .course-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }
        
        .course-description {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 25px;
            text-align: justify;
        }
        
        .schedule-container {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-top: 30px;
        }
        
        .schedule-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
        }
        
        .schedule-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
        }
        
        .schedule-list li {
            padding: 12px 15px;
            margin: 5px;
            border-radius: 5px;
            font-size: 16px;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            width: calc(50% - 10px);
            display: flex;
            justify-content: space-between;
        }
        
        .schedule-day {
            font-weight: 600;
            color: #495057;
        }
        
        .schedule-time {
            color: #6c757d;
        }
        
        /* Stili responsivi */
        @media (max-width: 991px) {
            .schedule-list li {
                width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .course-container {
                padding: 20px;
            }
        }