.header { position: fixed; top: 0; left: 0; right: 0; background: white; box-shadow: 0 2px 4px rgba(0,0,0,0.1); z-index: 1000; } .header-content { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.5rem; font-weight: bold; color: #333; text-decoration: none; } .nav-links { display: flex; gap: 2rem; align-items: center; } .nav-link { color: #666; text-decoration: none; transition: color 0.2s; } .nav-link:hover { color: var(--primary-color); } .signup-btn { background: var(--primary-color); color: white; padding: 0.5rem 1rem; border-radius: 8px; text-decoration: none; transition: opacity 0.2s; } .signup-btn:hover { opacity: 0.9; }