/* Global Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Roboto', sans-serif; line-height: 1.6; color: #333; background-color: #f9f9f9; } h1, h2, h3 { color: #D32F2F; } .btn { display: inline-block; padding: 10px 20px; text-decoration: none; border-radius: 5px; transition: background-color 0.3s; } .btn.primary { background-color: #D32F2F; color: white; } .btn.secondary { background-color: #FF9800; color: white; } .btn:hover { opacity: 0.8; } /* Header & Nav */ header { background-color: #D32F2F; color: white; padding: 10px 20px; } nav { display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.5em; font-weight: 700; } .nav-links { list-style: none; display: flex; gap: 20px; } .nav-links a { color: white; text-decoration: none; } .hamburger { display: none; font-size: 1.5em; cursor: pointer