.content-box {
    position: relative;
    z-index: 2;
    /* 確保文字在圖片上方 */
}

.info-section {
    margin-bottom: 40px;
}


.info-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* --- 福利網格 (Benefit Grid) - 本頁專屬 --- */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold, #fbb750);
    background: rgba(251, 183, 80, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-gold, #fbb750);
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-text strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 3px;
}

.benefit-text span {
    font-size: 0.9rem;
    color: #aaa;
}

/* --- 步驟流程 (Step Process) --- */
.step-process {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    margin-top: 20px;
}

.step-process::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 24px;
    width: 2px;
    background: rgba(251, 183, 80, 0.2);
    z-index: 0;
}

.step-item {
    position: relative;
    padding-left: 60px;
    z-index: 1;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #1a1510;
    border: 2px solid var(--primary-gold, #fbb750);
    border-radius: 50%;
    color: var(--primary-gold, #fbb750);
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.step-title {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 4px;
    border-left: 3px solid var(--accent-red, #d7423c);
    width: 100%;
}

.step-body {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- 圖片與排版 --- */
.highlight {
    color: var(--primary-gold, #fbb750);
    font-weight: bold;
}

.step-img-box {
    margin-top: 15px;
}

.step-img-box img {
    max-width: 100%;
    height: auto;
    border: 1px solid #444;
    border-radius: 4px;
}

.small-img {
    width: auto;
    border: 1px solid #444;
    border-radius: 4px;
}

.img-grid-2,
.img-grid-3 {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.img-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.img-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.img-grid-2 img,
.img-grid-3 img {
    width: 100%;
    height: auto;
    border: 1px solid #444;
    border-radius: 4px;
}

/* --- 提示框與備註 --- */
.alert-box.danger {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #ff6b6b;
    padding: 15px;
    border-radius: 0 4px 4px 0;
}

.alert-box.danger strong {
    color: #ff6b6b;
}

.note-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 4px;
    border-left: 3px solid #888;
    color: #ddd;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* =========================================
       手機版 RWD (僅處理內容與圖片)
       ========================================= */
@media (max-width: 768px) {

    .img-grid-2,
    .img-grid-3 {
        grid-template-columns: 1fr;
        /* 圖片變單欄 */
    }

    .step-process::before {
        left: 19px;
    }

    .step-item {
        padding-left: 50px;
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}