* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; background: linear-gradient(135deg, #fef9f0 0%, #fdf2e4 100%); color: #2d1b0a; line-height: 1.6; }
a { color: #f97316; text-decoration: none; }
a:hover { text-decoration: underline; }
nav { background: linear-gradient(135deg, #f97316, #c2410c); padding: 0.8rem 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; box-shadow: 0 4px 20px rgba(249,115,22,0.3); position: sticky; top: 0; z-index: 100; }
.nav-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.nav-links a { color: #fff; font-weight: 600; padding: 0.4rem 0; border-bottom: 2px solid transparent; transition: 0.3s; }
.nav-links a:hover { border-bottom-color: #fff; text-decoration: none; }
.brand { font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: 1px; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
h1 { font-size: 2.6rem; background: linear-gradient(135deg, #f97316, #4a2c0a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 2rem 0 1rem; text-align: center; }
h2 { font-size: 2rem; color: #4a2c0a; margin: 2rem 0 1.5rem; border-left: 6px solid #f97316; padding-left: 1rem; }
.card { background: rgba(255,255,255,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 24px; padding: 2rem; margin: 1.5rem 0; box-shadow: 0 10px 40px rgba(249,115,22,0.08), 0 2px 8px rgba(249,115,22,0.05); border: 1px solid rgba(249,115,22,0.1); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.text-center { text-align: center; }
img { max-width: 100%; height: auto; border-radius: 16px; display: block; margin: 1rem 0; }
.img-rounded { border-radius: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.news-item { margin-bottom: 2rem; padding-bottom: 1.8rem; border-bottom: 1px solid #f0dcc8; }
.news-item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.news-date { color: #7c5a3a; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; }
.news-summary { color: #4a3a2a; font-size: 1rem; }
.faq-item { margin-bottom: 2rem; padding: 1.5rem; background: rgba(255,255,255,0.5); border-radius: 16px; transition: 0.2s; }
.faq-item:hover { background: rgba(255,255,255,0.8); }
.faq-item h4 { color: #f97316; font-size: 1.2rem; margin-bottom: 0.5rem; }
footer { background: #2d1b0a; color: #f5e6d6; padding: 2.5rem 1.5rem; margin-top: 3rem; border-radius: 32px 32px 0 0; }
footer a { color: #fbb089; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.footer-bottom { text-align: center; font-size: 0.85rem; color: #b99a80; }
.btn { display: inline-block; background: linear-gradient(135deg, #f97316, #d95e0d); color: #fff; padding: 0.8rem 2rem; border-radius: 50px; font-weight: 700; transition: 0.3s; box-shadow: 0 4px 16px rgba(249,115,22,0.25); border: none; cursor: pointer; }
.btn:hover { transform: scale(1.02); box-shadow: 0 6px 24px rgba(249,115,22,0.35); text-decoration: none; color: #fff; }
.stats-number { font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, #f97316, #c2410c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stats-label { font-size: 1.1rem; color: #4a2c0a; margin-top: 0.3rem; }
.hero-card { background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(74,44,10,0.04)); padding: 3rem 2rem; border-radius: 32px; }
.hero-img { width: 100%; border-radius: 24px; box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
  nav { flex-direction: column; gap: 0.8rem; }
  .nav-links { gap: 0.8rem; justify-content: center; }
  .container { padding: 0 1rem; }
}