* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary: #0088cc; --primary-dark: #006ba3; --secondary: #3390ec; --text: #1a1a1a; --text-light: #666; --bg: #ffffff; --bg-light: #f8f9fa; --accent: #ff6b35; --success: #28a745; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } header { background: var(--bg); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; padding: 1rem 0; } nav { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; } .logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; } .nav-links { display: flex; gap: 2rem; list-style: none; } .nav-links a { color: var(--text); text-decoration: none; font-weight: 500; transition: color 0.3s; } .nav-links a:hover { color: var(--primary); } .btn { display: inline-block; padding: 12px 30px; background: var(--primary); color: white; text-decoration: none; border-radius: 8px; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; font-size: 1rem; } .btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,136,204,0.3); } .btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); } .btn-outline:hover { background: var(--primary); color: white; } .case-hero { padding: 60px 0; background: var(--bg-light); } .case-hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); } .case-hero p { font-size: 1.2rem; color: var(--text-light); max-width: 800px; } .case-content { padding: 80px 0; } .case-section { margin-bottom: 4rem; } .case-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); padding-bottom: 1rem; border-bottom: 3px solid var(--primary); } .case-section p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; font-size: 1.1rem; } .case-section ul { list-style: none; margin: 1.5rem 0; } .case-section ul li { padding: 0.75rem 0; color: var(--text-light); display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1.05rem; } .case-section ul li::before { content: '✓'; color: var(--success); font-weight: bold; flex-shrink: 0; margin-top: 0.1rem; font-size: 1.2rem; } .case-highlight { background: var(--bg-light); padding: 2rem; border-radius: 12px; border-left: 4px solid var(--primary); margin: 2rem 0; } .case-highlight p { margin: 0; font-size: 1.1rem; color: var(--text); } .back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); text-decoration: none; font-weight: 500; margin-bottom: 2rem; transition: color 0.3s; } .back-link:hover { color: var(--primary-dark); } .back-link svg { width: 20px; height: 20px; transition: transform 0.3s; } .back-link:hover svg { transform: translateX(-4px); } footer { background: var(--text); color: white; padding: 3rem 0; text-align: center; } .footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; } .footer-links { display: flex; gap: 2rem; list-style: none; } .footer-links a { color: white; text-decoration: none; opacity: 0.8; transition: opacity 0.3s; } .footer-links a:hover { opacity: 1; } @media (max-width: 768px) { .nav-links { display: none; } nav { flex-direction: column; align-items: flex-start; } .case-hero h1 { font-size: 2rem; } .case-hero p { font-size: 1rem; } .case-section h2 { font-size: 1.5rem; } .case-section p, .case-section ul li { font-size: 1rem; } }