// ============================================ // Layout Styles - Body and Common Elements // ============================================ // ===== Reset & Base ===== * { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; padding: 0; font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: #FFFFFF; color: #04020D; line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } // ===== Main Layout ===== main { min-height: calc(100vh - 300px); } // ===== Typography ===== h1, h2, h3, h4, h5, h6 { margin: 0; font-family: 'IntelOne Display', -apple-system, sans-serif; font-weight: 500; } p { margin: 0; } a { text-decoration: none; color: inherit; } // ===== Utility Classes ===== .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } // ===== Responsive Container ===== .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; } // ===== Animation Keyframes ===== @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } // ===== Print Styles ===== @media print { .tech-header, .tech-footer, .mobile-menu-btn { display: none !important; } body { background: white !important; color: black !important; } }