* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Montserrat', sans-serif; background-color: #f9f9f9; color: #333; max-width: 1440px; margin: 0 auto; } h1 { font-size: 2.5rem; color: #2c5530; } h2 { font-size: 2rem; color: #2c5530; } h3 { font-size: 1.4rem; color: #2c5530; } .navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; } .brand { display: flex; align-items: center; text-decoration: none; color: #2c5530; font-weight: 700; } .logo-placeholder { width: 38px; height: 38px; background-color: #4a7c59; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.7rem; margin-right: 10px; } .brand-text { display: flex; flex-direction: column; line-height: 1.1; } .brand-text span { font-size: 1.2rem; } .brand-text small { font-size: 0.7rem; color: #4a7c59; font-weight: 600; margin-top: 3px; } .button.primary { background-color: #4a7c59; color: white; padding: 0.6rem 1.2rem; border-radius: 4px; text-decoration: none; font-weight: 600; } .hero { display: flex; align-items: center; min-height: 70vh; padding: 2rem; background: linear-gradient(135deg, #f9f9f9 0%, #e8f5e9 100%); } .hero-content { flex: 1; max-width: 520px; padding: 1.5rem; } .hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; } .pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; } .pill { background: white; padding: 0.4rem 0.8rem; border-radius: 18px; font-size: 0.85rem; box-shadow: 0 2px 5px rgba(0,0,0,0.08); } .footer { background: #2c5530; color: white; padding: 2rem; margin-top: 3rem; text-align: center; } @media (max-width: 768px) { .hero { flex-direction: column; text-align: center; } }