
/* 社群按鈕區塊 */
.gns-social {
    display: flex;
    
    gap: 15px;justify-content: flex-end;
    
}
@media (max-width: 768px) {.gns-social {justify-content: center;}}
.gns-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 22px;
}

/* 各別品牌顏色 */
.gns-social-link.line {
    background-color: #06C755;
    color: #fff !important;
}

.gns-social-link.fb {
    background-color: #1877F2;
    color: #fff !important;
}

.gns-social-link.yt {
    background-color: #FF0000;
    color: #fff !important;
}

/* 滑過效果：微調亮度與上浮 */
.gns-social-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.gns-wrap {
    padding: 60px 15px;
    background-color: #f9f9f9;
    color: #333;
    font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}
.gns-box {
    max-width: 1000px;
    margin: 0 auto;
}
.gns-head {
    text-align: center;
    margin-bottom: 40px;
}
.gns-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.gns-subtitle {
    color: #666;
    font-size: 17px;
    max-width: 980px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid 特色卡片 */
.gns-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}
.gns-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.gns-card:hover {
    transform: translateY(-5px);
}
.gns-icon {
    font-size: 45px;
    color: #b2945e;
    margin-bottom: 25px;
}
.gns-card-h {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.gns-card-p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    text-align: justify;
}

/* FAQ 摺疊面板 */
.gns-faq-label {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #1a1a1a;
}
.gns-acc {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.gns-acc-item {
    border-bottom: 1px solid #eee;
}
.gns-acc-btn {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s;
}
.gns-acc-btn:hover { background: #fffdf9; }
.gns-acc-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: #b2945e;
}
.gns-acc-btn.active .gns-acc-icon {
    transform: rotate(45deg);
}
.gns-acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fafafa;
}
.gns-acc-inner {
    padding: 25px 35px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

/* Footer / CTA */
.gns-footer {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: #2c3e50;
    border-radius: 12px;
    color: #fff;
}
.gns-footer p {
    font-size: 18px;
    margin-bottom: 20px;
}
.gns-btn {
    display: flex;
    padding: 14px 40px;
    background: #b2945e;
    color: #fff !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        align-items: center;
    justify-content: center;
    width: 260px;
    margin: auto;
}
.gns-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gns-title { font-size: 24px; }
    .gns-card { padding: 30px 20px; }
    .gns-acc-btn { padding: 18px 20px; font-size: 16px; }
}
/* FAQ 內部問答流美化 */
.gns-qa-row {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}
.gns-qa-row:last-child {
    border-bottom: none;
}
.gns-q {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.gns-q-badge {
    background: #b2945e;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
}
.gns-a {
    padding-left: 30px; /* 對齊 Q 標籤後的文字 */
    color: #666;
    font-size: 15px;
}
