.objective {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 25px;
    transform-origin: top center;
}

h1 {
    color: #00a0e9;
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px; /* 縮小標題字體大小 */
}

h2 {
    color: #00a0e9;
    margin-top: 25px;
    font-size: 20px; /* 縮小次標題字體大小 */
}

.curriculum-list {
    list-style-type: none;
    color:black;
    padding: 0;
    margin: 0;
}

.curriculum-list li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.curriculum-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00a0e9;
}

.image-container {
    margin-top: 20px;  /* 在清單和圖片之間添加間距 */
    width: 40%;
    max-width: 600px;  /* 可根據需要調整 */
}

.image-container img {
    width: 50%;
    height: auto;
    border-radius: 4px;
    display: block;
}


/* 適應性設計 */
@media screen and (max-width: 480px) {
    body {
        padding: 15px;
        max-width: 100%;
    }

    h1 {
        font-size: 18px;
    }

    h2 {
        font-size: 15px;
    }
}

.self-learning {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.title {
    color: #0088cc;
    margin-bottom: 30px;
}

.link-item {
    margin-bottom: 25px;
}

.link-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.link-item a {
    color: #666;
    text-decoration: none;
    word-break: break-all;
    line-height: 1.4;
    display: inline-block;
}

.link-item a:hover {
    color: #0088cc;
    text-decoration: underline;
}