.intake-top-section {
    background-color: #FFF9F9; /* 極淡粉色背景 */
    padding: 60px 0;
    overflow: hidden;
}

/* 攝取方式 標籤裝飾線 */
.intake-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.intake-label-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #E80C7B, #B4E800);
    display: inline-block;
}

.intake-label-text {
    color: #E80C7B;
    font-weight: bold;
    letter-spacing: 2px;
}

/* 主標題 */
.intake-main-title {
    font-size: 40px;
    color: #E08277; /* 溫柔的橙粉色 */
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: 5px;
}

/* 內文描述 */
.intake-description p {
    font-size: 16px;
    color: #666666;
    line-height: 32px;
    max-width: 600px;
}

/* 最親密的朋友 裝飾框 */
.intake-friend-box {
    display: inline-block;
    border-left: 5px solid #B1FF55; /* 綠色邊框 */
    border-radius: 10px;
    padding: 25px 30px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(232, 12, 123, 0.05);
}

.intake-friend-box p {
    margin-bottom: 0;
    font-size: 16px;
    color: #666;
}

.highlight-green {
    background-color: #B1FF55; /* 圖片中的螢光綠底色 */
    color: #666666;
    padding: 2px 5px;
    margin: 0 3px;
    font-weight: bold;
}

/* 右側圖片與裝飾圓圈 */
.intake-image-wrapper {
    position: relative;
    text-align: center;
}

.decoration-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 450px;
    height: 300px;
    border: 1px solid #FFDADA; /* 極細粉色線條圓框 */
    border-radius: 50%;
    z-index: 1;
}

.intake-hero-img {
    position: relative;
    z-index: 2;
    transform: rotate(5deg); /* 讓錠劑看起來有漂浮感 */
    max-width: 90%;
}

/* --- 攝取方式 手機版適配 --- */
@media (max-width: 991px) {
    .intake-top-section {
        padding: 40px 0;
    }

    .intake-header {
        margin-bottom: 25px !important;
    }

    .intake-main-title {
        font-size: 30px; /* 縮小手機版標題 */
        letter-spacing: 2px;
        line-height: 45px;
        margin-bottom: 25px !important;
    }

    .intake-description p {
        font-size: 15px;
        line-height: 1.8;
        text-align: left; /* 保持段落左對齊方便閱讀，標題置中即可 */
        max-width: 100%;
    }

    /* 手機版圖片間距 */
    .intake-hero-img {
        max-width: 80%;
        transform: rotate(0deg); /* 手機版可以取消旋轉讓佈局更穩 */
    }

    /* 綠色方框調整 */
    .intake-friend-box {
        display: block; /* 寬度佔滿 */
        border-left: none;
        border-top: 5px solid #B1FF55; /* 改為頂部邊框更符合置中視覺 */
        padding: 20px;
        margin-top: 20px;
    }

    .intake-friend-box p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* 圖片區域手機版調整 */
    .intake-image-wrapper {
        margin-top: 20px;
    }

    .intake-hero-img {
        max-width: 80%;
        transform: rotate(0deg); /* 喺細螢幕攞正張圖睇落舒服啲 */
        margin: 0 auto;
    }
}

/* Section 容器 */
.intake-details-section {
    background-color: #fff;
    padding: 60px 0;
}

.specs-layout-wrapper {
    position: relative;
}

.specs-content-indent {
    padding-left: 45px;
}

/* 綠色邊框卡片通用樣式 */
.intake-usage-card, 
.intake-notice-card {
    background-color: #fff;
    border-top: 5px solid #B0FD54; /* 使用你指定的螢光綠 */
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

/* 上方卡片細節 */
.usage-icon {
    width: 47px;
    height: auto;
}

.usage-item span {
    font-size: 18px;
    color: #333;
}

.tip-title {
    font-size: 16px;
    line-height: 32px;
    color: #666666;
    margin-bottom: 15px;
}

.font-bold {
    font-weight: bold;
    color: #0E1618;
}

.tip-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* 下方卡片細節 */
.notice-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.notice-text {
    font-size: 16px;
    line-height: 32px;
    color: #666;
}

.notice-list {
    list-style: none;
    padding-left: 0;
}

.notice-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* 綠色圓點列表符號 */
.notice-list li::before {
    content: "●";
    color: #B1FF55;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.contact-link {
    color: #0000FF;
    text-decoration: underline;
    font-weight: bold;
}

.vertical-divider {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background-color: #EBEBEB;
    border-radius: 4px;
}

.intake-usage-card, .intake-notice-card {
    padding-left: 45px;
}

/* 桌面版寬度縮放優化 */
@media (min-width: 1200px) {
    .intake-usage-card
    {
        max-width: 800px;
    }
    .intake-notice-card {
        max-width: 1000px;
    }
}

/* --- 手機版適配 (不影響桌面版) --- */
@media (max-width: 991px) {
    .intake-details-section {
        padding: 40px 0;
    }

    /* 調整左側裝飾線與縮進 */
    .specs-content-indent {
        padding-left: 0; /* 手機版縮小左邊距，讓卡片更闊 */
    }

    .vertical-divider {
        width: 0; /* 手機版裝飾線稍微變細 */
    }

    /* 卡片樣式調整 */
    .intake-usage-card, 
    .intake-notice-card {
        padding: 30px 20px; /* 縮小內距 */
        text-align: left;    /* 根據 layout 截圖，文字仍維持左對齊 */
    }

    /* 攝取量區塊改為垂直置中 */
    .usage-info-row {
        text-align: left;
        align-items: flex-start !important; /* 根據截圖，icon與文字維持左對齊靠攏 */
    }

    .usage-item {
        margin-right: 0 !important;
        width: 100%;
    }

    .usage-icon {
        width: 42px; /* 手機版略為縮小圖示 */
    }

    .usage-item span {
        font-size: 16px;
    }

    /* 文字大小與行高微調 */
    .tip-title, .notice-text, .notice-list li {
        font-size: 15px;
        line-height: 28px;
    }

    .notice-title {
        font-size: 17px;
    }

    /* 修正列表符號位置 */
    .notice-list li::before {
        top: 0; /* 確保圓點對齊第一行文字 */
    }
}