.intro-container {
    display: flex;
    align-items: flex-start; /* 左右兩邊頂端對齊 */
    justify-content: space-between;
    gap: 2rem; /* 左右欄之間的間距 */
    margin-bottom: 2rem;
}

.intro-text {
    flex: 1; /* 左邊自動撐滿 */
    max-width: 45rem; /* 可依需要調整 */
}

.intro-title {
    margin-top: 0; /* 去掉多餘的上邊距 */
    margin-bottom: 1rem;
    font-size: 2rem; /* 或你想要的大小 */
    line-height: 1.2;
}

.code-card {
    flex: 0 0 auto; /* 右邊維持固定寬度 */
    max-width: 25rem; /* 卡片最大寬度 */
}
