/* Main content */
main {
    padding-bottom: 10vh;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 50px;
    font-weight: 500;
    color: #DFDEE5;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-top: 139px;
    margin-bottom: 3rem;
    text-align: center;
}

/* Original cards for Learning Outcomes */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.card {
    background: rgba(101, 85, 127, 0.197);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid white
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card h2 {
    font-family: 'Jost', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card p {
    font-family: 'Jost', Arial, sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
