* {
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 40%, #ecfdf5 100%);
    color: #1e293b;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
a:hover { opacity: 0.85; transform: translateY(-1px); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.navbar {
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    box-shadow: 0 4px 24px rgba(5, 150, 105, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.nav-links a {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}
.hero {
    background: linear-gradient(135deg, #059669 0%, #10b981 60%, #34d399 100%);
    color: #ffffff;
    padding: 64px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -20%;
    width: 140%;
    height: 220%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
}
.hero .subtitle {
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto 24px;
    opacity: 0.95;
}
.hero-actions a {
    display: inline-block;
    background: #fbbf24;
    color: #064e3b;
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 700;
    margin: 8px;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}
.hero-actions a:hover { background: #f59e0b; transform: translateY(-2px); }
.hero-img {
    max-width: 100%;
    max-height: 380px;
    border-radius: 20px;
    margin-top: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}
.section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid #a7f3d0;
}
.section-header h2 { font-size: 32px; color: #064e3b; font-weight: 700; }
.section-header p { color: #64748b; max-width: 640px; margin: 12px auto 0; }
.card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(5, 150, 105, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.08);
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(5, 150, 105, 0.15); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 32px 16px; }
.stat-number { font-size: 40px; font-weight: 800; color: #059669; }
.stat-label { color: #64748b; margin-top: 8px; font-size: 14px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { text-align: center; padding: 32px 24px; }
.feature-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.feature-card h3 { color: #064e3b; font-size: 18px; margin-bottom: 12px; }
.feature-card p { color: #475569; font-size: 14px; }
.story-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.story-img { width: 100%; border-radius: 16px; box-shadow: 0 8px 32px rgba(5, 150, 105, 0.15); }
.story-text h2 { color: #064e3b; font-size: 28px; margin-bottom: 16px; }
.story-text p { color: #475569; margin-bottom: 16px; }
.timeline-wrap { position: relative; padding-left: 32px; }
.timeline-item { position: relative; padding-bottom: 32px; padding-left: 24px; border-left: 3px solid #059669; }
.timeline-item::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fbbf24;
    border: 2px solid #059669;
}
.timeline-item h3 { color: #064e3b; font-size: 18px; }
.timeline-item p { color: #475569; font-size: 14px; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.event-card { position: relative; overflow: hidden; }
.event-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
.event-card h3 { margin: 8px 0; color: #064e3b; }
.event-card p { color: #64748b; font-size: 14px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-item .avatar { font-size: 42px; display: block; margin-bottom: 12px; }
.testimonial-item p { color: #475569; font-size: 14px; }
.testimonial-item .author { margin-top: 16px; color: #059669; font-weight: 700; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.news-card { padding: 20px; }
.news-card .news-date { color: #d97706; font-size: 13px; font-weight: 700; }
.news-card h3 { color: #064e3b; font-size: 16px; margin: 8px 0; line-height: 1.4; }
.news-card p { color: #64748b; font-size: 14px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .read-more { display: inline-block; color: #059669; font-weight: 700; margin-top: 12px; font-size: 14px; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { margin-bottom: 16px; padding: 24px 28px; }
.faq-question { color: #064e3b; font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.faq-answer { color: #475569; font-size: 15px; }
.cta-section {
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    color: #ffffff;
    text-align: center;
    padding: 60px 40px;
    border-radius: 28px;
    margin: 60px auto;
    max-width: 1200px;
    box-shadow: 0 16px 48px rgba(5, 150, 105, 0.25);
}
.cta-section h2 { font-size: 32px; margin-bottom: 16px; }
.cta-section p { margin-bottom: 16px; opacity: 0.9; }
.cta-section .cta-buttons a {
    display: inline-block;
    background: #fbbf24;
    color: #064e3b;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 700;
    margin: 8px;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}
.cta-section .cta-buttons a:hover { background: #f59e0b; transform: translateY(-2px); }
.cta-img { max-width: 100%; border-radius: 16px; margin-top: 24px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); }
.footer { background: #064e3b; color: #a7f3d0; padding: 48px 0 24px; margin-top: 64px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer h4 { color: #ffffff; margin-bottom: 12px; font-size: 18px; }
.footer a { display: block; margin: 6px 0; color: #a7f3d0; font-size: 14px; }
.footer p { font-size: 14px; margin: 4px 0; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #6ee7b7;
}
.footer-bottom a { display: inline; margin: 0 8px; color: #6ee7b7; }
@media (max-width: 768px) {
    .stats-grid, .features-grid, .testimonials-grid, .news-grid { grid-template-columns: 1fr; }
    .story-wrap { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .nav-links { gap: 8px; }
    .nav-links a { padding: 6px 12px; font-size: 13px; }
}