* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f0 50%, #c9dfe8 100%);
    min-height: 100vh;
}
.header { background: #fff; padding: 1.5rem 0; position: relative; border-bottom: 1px solid #e5e7eb; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.nav-menu { display: flex; gap: 3rem; list-style: none; }
.nav-item { position: relative; }
.nav-link { text-decoration: none; color: #666; font-size: 0.85rem; font-weight: 700; position: relative; padding: 0.5rem 0; transition: color 0.3s ease; }
.nav-link:hover { color: #1a1a1a; }
.dropdown { position: absolute; top: 100%; left: 0; background: white; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; z-index: 1000; padding: 1rem; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link { display: block; padding: 0.8rem 1rem; color: #666; text-decoration: none; font-size: 0.9rem; transition: all 0.2s ease; border-radius: 8px; }
.dropdown-link:hover { color: #1a1a1a; background: #f8f9fa; }
@media (max-width: 900px) { .nav-container { flex-direction: column; align-items: flex-start; padding: 0 1rem; } .nav-menu { gap: 1.5rem; } }
.main-content { max-width: 900px; margin: 60px auto 0 auto; padding: 2.5rem 2rem 3rem 2rem; background: #f0f7fa; border-radius: 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.header-text { font-size: 1.1rem; color: #666; font-weight: bold; margin-bottom: 1.5rem; letter-spacing: 0.02em; }
.main-title-left { text-align: left; margin-bottom: 1.5rem; }
.main-title-left .autism { display: block; font-size: 48px; font-weight: 300; color: #333; line-height: 0.9; }
.main-title-left .help-desk { display: block; font-size: 80px; font-weight: 300; color: #333; line-height: 0.8; }
.section-desc { font-size: 1.2rem; color: #555; margin-bottom: 2.5rem; }
.content-block { background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); padding: 2.5rem 2rem; margin-bottom: 2.5rem; }
.article-list { margin-top: 2rem; }
.article-item { background: #f8f8f8; border-radius: 8px; padding: 1.2rem 1.5rem; margin-bottom: 1.2rem; border-left: 4px solid #333; }
.article-item h4 { color: #667eea; margin-bottom: 0.5rem; font-size: 1.1rem; }
.article-item p { color: #444; font-size: 0.98rem; }
.back-arrow {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    background: #222;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.back-arrow:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
} 