/* Styles for teaching.html */
.teaching-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.teaching-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.teaching-item h2 {
    color: #005b96;
    margin-bottom: 10px;
}

.teaching-item p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.teaching-item strong {
    color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}