
/* Container principale */
.course-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header del corso */
.course-header {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
    border-radius: 10px;
}

.course-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.course-header * {
    position: relative;
    z-index: 2;
}

.course-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.course-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Contenuto del corso */
.course-content {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.course-description,
.course-details {
    flex: 1 1 calc(50% - 20px);
}

.course-description h2,
.course-details h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.course-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.course-details ul {
    list-style: none;
    padding: 0;
}

.course-details li {
    font-size: 1rem;
    margin-bottom: 10px;
}

.course-details li strong {
    font-weight: bold;
}

/* PDF Section */
.course-pdf {
    margin-top: 20px;
    text-align: center;
}

.pdf-download {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff8800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.acquisto-corso {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1A6AFF;;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.pdf-download:hover {
    background-color: #ff6600;
}

.acquisto-corso:hover {
    background-color: #002f87;
}
