/* Intro with image */
.intro-with-image {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Details section */
.details-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.detail-item {
    margin-bottom: 1.5rem;
}

.detail-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.course-schedule {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.course-schedule h5 {
    margin-top: 0;
    color: #3498db;
}

.course-schedule ul {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.text-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .intro-with-image {
        flex-direction: column;
    }
    
    .intro-image {
        max-width: 100%;
    }
}
