/* 弘毅养正 - 关于我们页面样式 */

.page-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.sidebar { position: sticky; top: 90px; align-self: start; }
.sidebar-widget { background: white; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 20px; }
.sidebar-title { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; padding: 14px 18px; font-size: 15px; font-weight: 700; }
.sidebar-menu { padding: 10px 0; }
.sidebar-menu a { display: block; padding: 10px 18px; font-size: 14px; color: var(--text-2); transition: all 0.3s; border-left: 3px solid transparent; }
.sidebar-menu a:hover,
.sidebar-menu a.active { background: var(--primary-light); color: var(--primary); border-left-color: var(--primary); }
.sidebar-contact { text-align: center; padding: 20px; }
.sidebar-contact p { font-size: 14px; color: var(--text-2); margin-bottom: 12px; }
.sidebar-contact .phone { font-size: 22px; color: var(--primary); font-weight: 800; margin-bottom: 12px; }
.sidebar-contact .btn { display: inline-block; background: var(--primary); color: white; padding: 10px 24px; border-radius: 50px; font-size: 13px; font-weight: 600; transition: all 0.3s; }
.sidebar-contact .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,139,90,0.3); }
.main-content { min-width: 0; }
.content-section { background: white; border-radius: 16px; padding: 32px; margin-bottom: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.content-section h2 { font-size: 24px; font-weight: 800; color: #1a1a2e; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.content-section h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin: 20px 0 12px; }
.content-section p { font-size: 15px; color: var(--text-2); line-height: 1.9; margin-bottom: 16px; }
.content-section ul { list-style: none; margin-top: 16px; }
.content-section li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; color: var(--text-2); }
.content-section li:last-child { border-bottom: none; }
.content-section li::before { content: '✓'; color: var(--primary); font-weight: bold; flex-shrink: 0; margin-top: 1px; }
.honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 20px; }
.honor-card { background: #f8faf9; border-radius: 12px; padding: 20px; text-align: center; transition: all 0.3s; }
.honor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.honor-icon { font-size: 32px; margin-bottom: 10px; }
.honor-card h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 5px; }
.honor-card p { font-size: 12px; color: #666; margin: 0; }
.timeline { position: relative; padding-left: 28px; margin-top: 24px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--primary), var(--primary-light)); }
.timeline-item { position: relative; padding: 0 0 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -24px; top: 4px; width: 14px; height: 14px; background: white; border: 3px solid var(--primary); border-radius: 50%; }
.timeline-year { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.timeline-item h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.timeline-item p { font-size: 13px; color: #666; margin: 0; line-height: 1.6; }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 20px; }
.stat-item { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 12px; padding: 20px; text-align: center; color: white; }
.stat-num { font-size: 32px; font-weight: 900; line-height: 1; }
.stat-label { font-size: 13px; opacity: 0.85; margin-top: 5px; }
.cta-banner { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%); }
.cta-banner h2 { font-size: 36px; font-weight: 800; color: white; margin-bottom: 12px; position: relative; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 30px; position: relative; }
.cta-phone { font-size: 48px; font-weight: 900; color: var(--accent); margin-bottom: 24px; position: relative; display: block; letter-spacing: 2px; }
.cta-btn { background: linear-gradient(135deg, var(--accent), #f5a623); color: #1a1a2e; padding: 15px 44px; border-radius: 50px; font-size: 16px; font-weight: 700; display: inline-block; transition: all 0.3s; position: relative; }
.cta-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(247,183,49,0.4); }
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; opacity: 0; transition: all 0.3s; font-size: 16px; box-shadow: 0 4px 15px rgba(27,139,90,0.3); }
.scroll-top.visible { opacity: 1; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 240px 1fr; }
}

@media (max-width: 992px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .honor-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
