* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #0d1117; color: #c9d1d9; line-height: 1.6; }
header { background: linear-gradient(135deg, #238636 0%, #2ea043 100%); padding: 3rem 0; text-align: center; }
header h1 { font-size: 3rem; margin-bottom: 0.5rem; color: #fff; }
header p { font-size: 1.2rem; color: #7ee787; }
nav { background: #161b22; padding: 1rem; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
nav { display: flex; justify-content: center; gap: 2rem; }
nav a { color: #c9d1d9; text-decoration: none; padding: 0.5rem 1rem; border-radius: 6px; transition: 0.3s; }
nav a:hover { background: #238636; color: #fff; }
main { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; }
.hero { text-align: center; padding: 4rem 2rem; background: linear-gradient(135deg, #1f6feb 0%, #238636 100%); border-radius: 16px; margin-bottom: 3rem; }
.hero h2 { font-size: 2.5rem; margin-bottom: 1rem; color: #fff; }
.hero p { font-size: 1.3rem; color: #fff; max-width: 700px; margin: 0 auto; }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin: 3rem 0; }
.service { background: #161b22; padding: 2.5rem; border-radius: 12px; border: 1px solid #30363d; transition: 0.3s; }
.service:hover { transform: translateY(-5px); border-color: #238636; }
.service h3 { color: #7ee787; font-size: 1.5rem; margin-bottom: 1rem; }
.service-icon { font-size: 3rem; margin-bottom: 1rem; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; margin: 4rem 0; }
.stat { background: #161b22; padding: 2rem; border-radius: 12px; }
.stat-number { font-size: 3rem; font-weight: bold; color: #7ee787; }
.stat-label { color: #8b949e; margin-top: 0.5rem; }
footer { background: #161b22; text-align: center; padding: 3rem 2rem; margin-top: 5rem; border-top: 1px solid #30363d; }
footer a { color: #58a6ff; text-decoration: none; }
footer a:hover { text-decoration: underline; }
