/* Website 32 - Fixed CSS */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: #ffffff;
    color: #1a1a1a;
}

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

.header {
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    
    
}

.header .container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.4rem; font-weight: 700; color: #1a1a1a; text-decoration: none; }

.nav { display: flex; gap: 25px; list-style: none; }

.nav a { color: #1a1a1a; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; position: relative; }

.nav a:hover, .nav a.active { color: #1a1a1a; }

.nav a::after { content: ""; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: #1a1a1a; transition: width 0.3s; }

.nav a:hover::after, .nav a.active::after { width: 100%; }

.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: #ffffff;
    text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 20px; color: #1a1a1a; line-height: 1.3; }
.hero p { font-size: 1.15rem; opacity: 0.85; max-width: 650px; margin: 0 auto 30px; color: #1a1a1a; }
.hero h1 span { color: #1a1a1a; }

.section { padding: 80px 0; }

.section-title { text-align: center; margin-bottom: 50px; }

.section-title h2 { font-size: 2rem; font-weight: 700; color: #1a1a1a; margin-bottom: 15px; }

.section-title p { color: #888; font-size: 1rem; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.feature-card { background: #f8f8f8; border-radius: 16px; padding: 35px; transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.08); }

.feature-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }

.feature-icon { font-size: 2.5rem; margin-bottom: 20px; }

.feature-card h3 { font-size: 1.25rem; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }

.feature-card p { color: #1a1a1a; font-size: 0.95rem; line-height: 1.7; }

.timeline { max-width: 800px; margin: 0 auto; position: relative; }

.timeline::before { content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: #1a1a1a; }

.timeline-item { padding: 30px 0; text-align: center; position: relative; margin-bottom: 20px; }

.timeline-num { width: 60px; height: 60px; background: #1a1a1a; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.3rem; font-weight: 700; }

.timeline-item h4 { font-size: 1.2rem; color: #1a1a1a; margin-bottom: 8px; }

.timeline-item p { color: #888; font-size: 0.95rem; }

.cta-section { background: #1a1a1a; padding: 60px 0; text-align: center; }

.cta-section h2 { color: #fff; font-size: 1.8rem; margin-bottom: 15px; }

.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 30px; }

.cta-btn { display: inline-block; padding: 16px 40px; background: #fff; color: #1a1a1a; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s; }

.cta-btn:hover { transform: scale(1.05); }

.contact-section { background: #ffffff; padding: 80px 0; text-align: center; }

.contact-section h2 { font-size: 2rem; margin-bottom: 40px; color: #1a1a1a; }

.contact-info { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }

.contact-item { text-align: center; padding: 25px 40px; background: #f8f8f8; border-radius: 12px; }

.contact-item span { display: block; font-size: 0.9rem; color: #888; margin-bottom: 8px; }

.contact-item strong { font-size: 1.15rem; color: #1a1a1a; }

footer { background: #0f172a; padding: 40px 0; text-align: center; }

footer p { color: #64748b; font-size: 0.9rem; }

.btn { display: inline-block; padding: 14px 32px; background: linear-gradient(135deg, #1a1a1a, #1a1a1a); color: #fff; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s; }

.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
    .nav { display: none; }
    .hero h1 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-info { flex-direction: column; align-items: center; }
    .timeline::before { left: 30px; }
    .timeline-item { text-align: left; padding-left: 80px; }
    .timeline-num { position: absolute; left: 0; margin: 0; }
}
