* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #f9f9f9; color: #333; }
.container { width: 90%; max-width: 1200px; margin: auto; }
.flex-row { display: flex; justify-content: space-between; align-items: center; }

/* Top Bar */
.top-bar { background: #1b5e20; color: white; padding: 8px 0; font-size: 13px; }
.socials a { color: white; margin-left: 10px; }

/* Header */
.header { padding: 30px 0; display: flex; justify-content: space-between; align-items: center; background: white; }
.logo-box { display: flex; align-items: center; }
.logo-circle { width: 60px; height: 60px; background: #2e7d32; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-right: 15px; }
.logo-text h1 { font-size: 24px; color: #1b5e20; }
.logo-text p { font-size: 11px; color: #666; font-weight: bold; }

.search-box input { padding: 10px; border: 1px solid #ddd; border-radius: 4px 0 0 4px; outline: none; }
.search-box button { padding: 10px 15px; background: #01579b; color: white; border: none; border-radius: 0 4px 4px 0; cursor: pointer; }

/* Nav */
.navbar { background: #01579b; position: sticky; top: 0; z-index: 1000; border-bottom: 4px solid #ff9800; }
.nav-links { list-style: none; display: flex; }
.nav-links li a { color: white; text-decoration: none; padding: 15px 20px; display: block; font-size: 14px; }
.nav-links li a:hover, .nav-links li a.active { background: #ff9800; }

/* Hero */
.hero { background: url('https://images.unsplash.com/photo-1541339907198-e08759dfc3ef?auto=format&fit=crop&w=1200') center/cover; height: 400px; }
.hero-overlay { background: rgba(0,0,0,0.6); height: 100%; display: flex; align-items: center; color: white; }
.hero-content h1 { font-size: 40px; margin: 10px 0; }
.btn { background: #ff9800; color: white; padding: 12px 25px; text-decoration: none; border-radius: 4px; display: inline-block; margin-top: 20px; font-weight: bold; }

/* Content */
.content { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding: 50px 0; }
.section-title { border-bottom: 2px solid #ff9800; padding-bottom: 10px; margin-bottom: 30px; color: #1b5e20; }
.news-card { background: white; display: flex; gap: 20px; padding: 15px; margin-bottom: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.news-img-placeholder { width: 120px; height: 90px; background: #eee; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #999; flex-shrink: 0; }

/* Footer */
.footer { background: #263238; color: #cfd8dc; padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; padding-bottom: 30px; }
.footer-links ul { list-style: none; margin-top: 15px; }
.footer-links a { color: #cfd8dc; text-decoration: none; font-size: 14px; line-height: 2; }
.footer-bottom { background: #1a232e; text-align: center; padding: 20px; font-size: 12px; }