* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary-green: #4a7c59; --primary-green-light: #6b9b7a; --primary-green-dark: #3a6347; --accent-gold: #c9a227; --accent-red: #c45c48; --bg-cream: #faf8f3; --bg-paper: #f5f2eb; --text-dark: #2c3e2d; --text-medium: #5a6b5c; --text-light: #8a9a8c; --border-color: #d4d9d5; --shadow-soft: 0 4px 20px rgba(74, 124, 89, 0.08); --shadow-medium: 0 8px 30px rgba(74, 124, 89, 0.12); }
body { font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif; background: linear-gradient(180deg, #f0f7f2 0%, #faf8f3 100%); color: var(--text-dark); line-height: 1.7; min-height: 100vh; }

/* 容器 */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== 头部横幅区域 ===== */
.hero-section { position: relative; min-height: 420px; background: linear-gradient(135deg, #e8f4e8 0%, #d4e8d8 50%, #c8ddd0 100%); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.8) 0%, transparent 50%), url(zt_banner.png); background-size: cover, 100% 100%; background-position: center bottom; background-repeat: no-repeat; }

/* 装饰元素 - 柳枝 */
.willow-branch { position: absolute; width: 200px; height: 300px; opacity: 0.6; }
.willow-branch.left { left: -20px; top: -50px; background: url("data:image/svg+xml,%3Csvg xmlns=!string!viewBox=!string!%3E%3Cpath d=!string!stroke=!string!stroke-width=!string!fill=!string!/%3E%3Cpath d=!string!stroke=!string!stroke-width=!string!fill=!string!/%3E%3Cpath d=!string!stroke=!string!stroke-width=!string!fill=!string!/%3E%3Cpath d=!string!stroke=!string!stroke-width=!string!fill=!string!/%3E%3C/svg%3E") no-repeat; transform: rotate(-10deg); }
.willow-branch.right { right: -30px; top: -30px; background: url("data:image/svg+xml,%3Csvg xmlns=!string!viewBox=!string!%3E%3Cpath d=!string!stroke=!string!stroke-width=!string!fill=!string!/%3E%3Cpath d=!string!stroke=!string!stroke-width=!string!fill=!string!/%3E%3C/svg%3E") no-repeat; transform: scaleX(-1) rotate(5deg); }

/* 燕子装饰 */
.swallow { position: absolute; width: 40px; height: 25px; opacity: 0.7; }
.swallow-1 { top: 15%; left: 12%; animation: fly1 8s ease-in-out infinite; }
.swallow-2 { top: 25%; right: 18%; animation: fly2 10s ease-in-out infinite; }
.swallow-3 { top: 35%; left: 8%; animation: fly3 12s ease-in-out infinite; }
@keyframes fly1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -15px); }
}
@keyframes fly2 {
    0%, 100% { transform: translate(0, 0) scaleX(-1); }
    50% { transform: translate(-25px, 10px) scaleX(-1); }
}
@keyframes fly3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}
.swallow svg { width: 100%; height: 100%; fill: #4a5568; }

/* 主标题区域 */
.hero-content { position: relative; z-index: 10; text-align: center; padding: 60px 20px; }
.main-title { font-family: '微软雅黑'; font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 700; color: var(--primary-green-dark); letter-spacing: 0.15em; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); margin-bottom: 10px; position: relative; }
.main-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 120px; height: 3px; background: linear-gradient(90deg, transparent, var(--accent-gold), transparent); }
.subtitle { font-family: '微软雅黑'; font-size: clamp(1.5rem, 4vw, 2.2rem); color: var(--primary-green); letter-spacing: 0.3em; margin-top: 25px; font-weight: 500; }
.year-badge { display: inline-block; margin-top: 30px; padding: 8px 30px; background: linear-gradient(135deg, var(--accent-gold), #d4b43a); color: white; font-size: 1rem; letter-spacing: 0.2em; border-radius: 0; box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3); }

/* ===== 新闻资讯区域 ===== */
.news-section { padding: 50px 0; background: var(--bg-cream); }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width:768px) {
    .news-grid { grid-template-columns: 1fr; }
}
.news-card { background: white; border-radius: 0; padding: 20px 25px; box-shadow: var(--shadow-soft); border-left: 4px solid var(--primary-green); transition: all 0.3s ease; display: flex; align-items: flex-start; gap: 15px; align-items: center; }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); border-left-color: var(--accent-gold); }
.news-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green)); border-radius: 0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.news-icon svg { width: 22px; height: 22px; fill: white; }
.news-content { flex: 1; }
.news-title { font-size: 0.95rem; color: var(--text-dark); line-height: 1.6; font-weight: 500; }
.news-tag { display: inline-block; font-size: 0.7rem; padding: 2px 10px; background: #e8f0e9; color: var(--primary-green); border-radius: 0; margin-top: 8px; font-weight: 500; }
.news-tag.important { background: #fce8e6; color: var(--accent-red); }
.news-tag.notice { background: #e8f4fc; color: #2b6cb0; }

/* ===== 章节标题样式 ===== */
.section-header { text-align: center; padding: 60px 0 40px; position: relative; }
.section-title { font-family: '微软雅黑'; font-size: 2.2rem; color: var(--primary-green-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 20px; }
.section-title::before, .section-title::after { content: ''; width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-gold)); }
.section-title::after { background: linear-gradient(90deg, var(--accent-gold), transparent); }
.section-subtitle { color: var(--text-medium); font-size: 1rem; margin-top: 10px; }

/* ===== 祭扫服务区域 ===== */
.services-section { padding: 0 0 60px; background: var(--bg-cream); }
.services-intro { text-align: center; color: var(--text-medium); margin-bottom: 40px; font-size: 1.05rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width:992px) {
    .services-grid { grid-template-columns: 1fr; }
}
.service-card { background: white; border-radius: 0; padding: 35px 30px; box-shadow: var(--shadow-soft); transition: all 0.4s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--accent-gold), #e0c050); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--accent-red), #d97a6a); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); }
.service-icon { width: 70px; height: 70px; border-radius: 0; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; background: linear-gradient(135deg, #e8f4e8, #d4e8d8); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #fcf8e8, #f5ebc8); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #fce8e6, #f5d4d0); }
.service-icon svg { width: 35px; height: 35px; }
.service-card:nth-child(1) .service-icon svg { fill: var(--primary-green); }
.service-card:nth-child(2) .service-icon svg { fill: var(--accent-gold); }
.service-card:nth-child(3) .service-icon svg { fill: var(--accent-red); }
.service-title { font-family: '微软雅黑'; font-size: 1.4rem; color: var(--text-dark); margin-bottom: 15px; font-weight: 600; }
.service-desc { color: var(--text-medium); font-size: 0.95rem; line-height: 1.8; margin-bottom: 25px; }
.service-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.service-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 0; font-size: 0.9rem; text-decoration: none; transition: all 0.3s ease; font-weight: 500; }
.service-btn-primary { background: var(--primary-green); color: white; }
.service-btn-primary:hover { background: var(--primary-green-dark); transform: scale(1.02); }
.service-btn-secondary { background: #f0f4f1; color: var(--primary-green); border: 1px solid var(--border-color); }
.service-btn-secondary:hover { background: #e8f0e9; border-color: var(--primary-green); }

/* ===== 绿色祭扫横幅 ===== */
.green-banner { background: linear-gradient(135deg, #4a7c59 0%, #5a9a6a 50%, #6bb07a 100%); padding: 50px 0; position: relative; overflow: hidden; }
.green-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns=!string!viewBox=!string!%3E%3Ccircle cx=!string!cy=!string!r=!string!fill=!string!/%3E%3Ccircle cx=!string!cy=!string!r=!string!fill=!string!/%3E%3Ccircle cx=!string!cy=!string!r=!string!fill=!string!/%3E%3C/svg%3E"); background-size: 100px 100px; }
.green-banner-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
@media (max-width:768px) {
    .green-banner-content { flex-direction: column; text-align: center; }
}
.green-banner-text { flex: 1; }
.green-banner-title { font-family: '微软雅黑'; font-size: clamp(1.8rem, 4vw, 2.5rem); color: white; font-weight: 600; letter-spacing: 0.1em; margin-bottom: 10px; }
.green-banner-subtitle { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; letter-spacing: 0.05em; }
.green-banner-decoration { display: flex; align-items: center; gap: 20px; }
.green-icon { width: 80px; height: 80px; background: rgba(255, 255, 255, 0.15); border-radius: 0; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.green-icon svg { width: 45px; height: 45px; fill: white; }

/* ===== 惠民措施区域 ===== */
.benefits-section { padding: 0 0 80px; background: var(--bg-cream); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
@media (max-width:768px) {
    .benefits-grid { grid-template-columns: 1fr; }
}
.benefit-card { background: white; border-radius: 0; padding: 30px; box-shadow: var(--shadow-soft); transition: all 0.3s ease; border: 1px solid var(--border-color); display: flex; align-items: center; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); border-color: var(--primary-green-light); }
.benefit-number { width: 45px; height: 45px; background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light)); color: white; border-radius: 0; display: flex; align-items: center; justify-content: center; font-family: '微软雅黑'; font-size: 1.3rem; font-weight: 600; margin-right: 20px; }
.benefit-title { font-size: 1.15rem; color: var(--text-dark); font-weight: 600; }
.benefit-desc { color: var(--text-medium); font-size: 0.95rem; line-height: 1.7; }

/* ===== 装饰元素 ===== */
.divider-wave { height: 60px; background: url("data:image/svg+xml,%3Csvg xmlns=!string!viewBox=!string!preserveAspectRatio=!string!%3E%3Cpath d=!string!fill=!string!/%3E%3C/svg%3E"); background-size: 100% 100%; }

/* 浮动装饰 */
.floating-decoration { position: fixed; pointer-events: none; z-index: 1000; opacity: 0.6; }
.petal { width: 15px; height: 15px; background: radial-gradient(circle, #ffb7c5 0%, #ffc0cb 100%); border-radius: 50% 0 50% 50%; animation: fall linear infinite; }
@keyframes fall {
    0% { transform: translateY(-100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* 响应式优化 */
@media (max-width:768px) {
    .hero-section { min-height: 350px; }
    .main-title { letter-spacing: 0.08em; }
    .section-title { font-size: 1.6rem; }
    .section-title::before, .section-title::after { width: 30px; }
    .services-grid { gap: 20px; }
    .service-card { padding: 25px 20px; }
    .benefits-grid { gap: 15px; }
    .benefit-card { padding: 20px; }
}