:root {
    --primary: #0a3d31;
    --accent: #c5a059;
    --bg: #ffffff;
    --text: #333333;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    background-color: #f8f8f8;
    color: var(--text);
    line-height: 1.6;
}

.page-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

header {
    background: var(--primary);
    padding: 15px;
    text-align: center;
    color: var(--accent);
    font-size: 22px;
    font-weight: bold;
    border-bottom: 2px solid var(--accent);
}

.hero { padding: 20px; text-align: center; }
.hero h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; line-height: 1.2; }
.hero-img { width: 100%; border-radius: 10px; margin-bottom: 15px; }

.section { padding: 30px 20px; border-bottom: 1px solid #eee; }
.section-title { font-size: 20px; color: var(--primary); margin-bottom: 20px; display: flex; align-items: center; }
.section-title::before { content: ""; display: inline-block; width: 4px; height: 20px; background: var(--accent); margin-right: 10px; }

.img-full { width: 100%; border-radius: 8px; margin-bottom: 15px; }
.img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
.img-grid img { width: 100%; border-radius: 6px; }

.text-content { font-size: 15px; color: #555; margin-bottom: 15px; }
.highlight { color: var(--primary); font-weight: bold; }

.btn-container { padding: 20px; }
.cta-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 6px;
    margin-bottom: 15px;
}

footer { padding: 40px 20px 120px; background: #f4f4f4; text-align: center; font-size: 12px; color: #888; }
.footer-links { margin-bottom: 15px; }
.footer-links a { color: #888; text-decoration: none; margin: 0 5px; }
.disclaimer { text-align: left; margin-top: 20px; border-top: 1px solid #ddd; padding-top: 15px; line-height: 1.4; }

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 10px 20px;
    border-top: 1px solid #eee;
    z-index: 1000;
}
