/* Infineon Distributor Website */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
h1 { font-size: 2.5rem; margin: 1rem 0; }
h2 { font-size: 2rem; margin: 1.5rem 0; }
a { color: #1e40af; text-decoration: none; }
.header { background: white; box-shadow: 0 2px 4px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { font-size: 1.8rem; font-weight: bold; color: #1e3a8a; }
.nav-menu { display: flex; list-style: none; }
.nav-item { margin-left: 1.5rem; }
.nav-link { color: #333; font-weight: 500; }
.nav-link:hover, .nav-link.active { color: #1e40af; }
.hamburger { display: none; cursor: pointer; background: none; border: none; font-size: 1.5rem; }
.hero { background: linear-gradient(135deg, #1e40af, #1e3a8a); color: white; padding: 4rem 1rem; text-align: center; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }
.btn { display: inline-block; padding: 0.8rem 1.8rem; background: #f97316; color: white; border-radius: 4px; font-weight: bold; }
.btn:hover { background: #ea580c; }
.btn-secondary { background: transparent; border: 2px solid white; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; }
.section { padding: 3rem 1rem; }
.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card { background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.card-header { padding: 1.5rem; background: #f3f4f6; }
.card-title { font-size: 1.3rem; }
.card-body { padding: 1.5rem; }
.breadcrumb { padding: 1rem 0; background: #f9fafb; }
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; flex-direction: column; }
  .nav-menu.active { display: flex; }
  .hero h1 { font-size: 2rem; }
}