<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Container for Layout */
main.container {
    display: block;
    margin: 0 auto;
    padding: 20px;
    max-width: 960px;
}

.title {
    text-align: center;
    font-size: 4rem;
    color: var(--primary-color);
    margin: 0.5rem;
}

/* Adjust title for mobile */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
}

/* Section Styling */
.section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Title */
h1.course-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Section Titles */
h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Paragraphs &amp; Lists */
p, ul {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Bullet Lists */
ul.curriculum-list {
    list-style-type: disc;
    padding-left: 1.5rem;
}

/* Teacher Section */
.teacher {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
}

.teacher img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.teacher .details {
    flex: 1;
}

.teacher .details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.teacher .details p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .teacher {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}</pre></body></html>