/* 植研使用指南頁面專用CSS */
/* 使用 how-to-use- 前綴避免與其他CSS衝突 */

/* KV區塊 */
.how-to-use-kv {
   
    color: white;
    text-align: center;
    padding: 200px 20px;
    position: relative;
    /* overflow: hidden; */
}

.how-to-use-kv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg05.jpg') center/cover;
    opacity: 1;
    z-index: 1;
}

.how-to-use-kv-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.how-to-use-kv h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.3); */
}

.how-to-use-kv p {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* FAQ容器 */
.how-to-use-faq-container {
    background: #f8f9fa;
    padding: 60px 0;
}

/* 內容包裝層 - 控制寬度 */
.how-to-use-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.95rem;
}

.how-to-use-faq-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-to-use-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.how-to-use-faq-card h2 {
    color: #253823;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.how-to-use-faq-card h2 i {
    color: #253823;
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

.how-to-use-faq-card ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.how-to-use-faq-card li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
}

.how-to-use-faq-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
}

/* 高亮區塊 */
.how-to-use-highlight {
    /* background: linear-gradient(135deg, #e8f5e8, #f0f9f0); */
    border-left: 4px solid #7b9179;
    padding: 20px;
    margin: 20px 0;
    border-radius: 3px;
    background-color: #aac2a7;
    color:#000;
}

.how-to-use-highlight br {
    margin-bottom: 8px;
}

.how-to-use-highlight i {
    color: #000;
    margin-right: 8px;
    font-size: 0.9em;
}

/* 頁腳提醒 */
.how-to-use-footer-tips {
    background: #37A863;
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.how-to-use-footer-tips h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.how-to-use-footer-tips h3 i {
    color: #fff;
    font-size: 1.5rem;
}

.how-to-use-footer-tips ul {
    list-style: none;
    padding: 0;
}

.how-to-use-footer-tips li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.how-to-use-footer-tips li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.how-to-use-footer-tips strong {
    color: #fff;
    font-weight: bold;
}






/* 響應式設計 */
@media (max-width: 768px) {
.how-to-use-kv::before { background: url('../images/m_bg5.jpg') center/cover; }
.how-to-use-content-wrapper { max-width: 100%; padding: 0 15px; font-size: 0.9rem; }
.how-to-use-kv h1 { font-size: 2.3rem; }
.how-to-use-kv p { font-size: 1.2rem; }
.how-to-use-faq-card { padding: 20px; margin-bottom: 20px; }
.how-to-use-faq-card h2 { font-size: 1.5rem; }
.how-to-use-faq-card h2 i { font-size: 1.3rem; width: 20px; }
.how-to-use-faq-card li,
.how-to-use-faq-card p { font-size: 1.2rem; }
.how-to-use-footer-tips { padding: 30px 20px; }
.how-to-use-footer-tips h3 { font-size: 2.2rem; }
.how-to-use-footer-tips li { font-size: 1.28rem; }
.how-to-use-highlight {font-size: 1.1rem;}
}

/* 平板版響應式 */

@media (min-width: 768px) and (max-width: 1024px) {

.how-to-use-content-wrapper { max-width: 89%; padding: 0 20px; font-size: 0.92rem; }
.how-to-use-kv h1 { font-size: 2.5rem; }
.how-to-use-kv p { font-size: 1.3rem; }
.how-to-use-faq-card { padding: 25px; }
.how-to-use-faq-card h2 { font-size: 1.6rem; }
.how-to-use-faq-card li,
.how-to-use-faq-card p { font-size: 1.1rem; }
.how-to-use-highlight{ font-size: 1rem;}

}