.circle-left {
    top: 120px;
    left: -250px;
    background: linear-gradient(135deg, rgba(252, 222, 158, 0.75) 35%, rgba(147, 255, 212, 0.75) 75%);
}

.circle-middle {
    bottom: -800px;
    right: -200px;
    background: linear-gradient(135deg, rgba(158, 184, 252, 0.75) 35%, rgba(227, 120, 237, 0.75) 75%);
    ;
}

.circle-right {
    top: 1600px;
    left: -250px;
    background: linear-gradient(135deg, rgba(252, 158, 158, 0.75) 35%, rgba(147, 244, 255, 0.75) 75%);
}

.learning-outcomes-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 82vh;
    z-index: 1;
    position: relative;
    padding: 40px;
}

.learning-outcomes-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
    max-width: 700px;
    font-size: 18px;
    line-height: 1.6;
    color: #0C0C0C;
}

.learning-outcomes-wrapper a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    font-weight: 400;
}

body.dark-mode .learning-outcomes-wrapper a {
    color: #F0F0F0;
}

.learning-outcomes-wrapper a:hover {
    color: #D8A25E;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

        /* Frosted Glass Effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.modal-content {
    margin-top: 5%;
    max-width: 80%;
    max-height: 80%;
}