* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; background: #f4f4f4; color: #333; }
a { color: inherit; }
.top-bar { background: #222; color: #FFD700; padding: 10px 5%; text-align: right; font-family: 'Oswald', sans-serif; font-size: 0.9rem; }
header { background: #2E8B57; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); padding-bottom: 60px; }
.logo { font-family: 'Oswald', sans-serif; font-size: 2.2rem; color: white; text-decoration: none; }
nav a { color: white; text-decoration: none; margin-left: 20px; font-family: 'Oswald', sans-serif; text-transform: uppercase; }
nav a:hover { text-decoration: underline; }
.hero { position: relative; padding: 100px 5%; background: #222; color: white; text-align: center; overflow: hidden; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: 5rem; line-height: 1; margin-bottom: 20px; transform: rotate(-2deg); color: #FFD700; }
.hero p { max-width: 900px; margin: 0 auto; font-size: 1.08rem; }
section { padding: 80px 10%; position: relative; }
.skew-bg { background: white; transform: skewY(-2deg); margin-top: -50px; padding: 100px 10%; }
.skew-content { transform: skewY(2deg); }
h1, h2, h3 { font-family: 'Oswald', sans-serif; }
h2 { font-size: 3rem; text-transform: uppercase; margin-bottom: 30px; color: #2E8B57; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
p, li { line-height: 1.8; }
p { margin-bottom: 18px; }
ul { padding-left: 20px; margin-bottom: 18px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.stat-box { background: #2E8B57; color: white; padding: 30px; text-align: center; border-radius: 15px; }
.stat-box span { display: block; font-size: 2.1rem; font-family: 'Oswald', sans-serif; }
.program-card { background: #fff; border-left: 10px solid #FFD700; padding: 30px; margin-bottom: 20px; box-shadow: 5px 5px 0px #2E8B57; }
.btn-gold { background: #FFD700; color: #222; padding: 15px 40px; font-family: 'Oswald', sans-serif; text-decoration: none; display: inline-block; font-weight: bold; transition: 0.3s; }
.btn-gold:hover { background: white; }
.page-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.note-box { background: #fff; padding: 24px; border-left: 8px solid #2E8B57; box-shadow: 5px 5px 0 #FFD700; }
.table-like { display: grid; grid-template-columns: 240px 1fr; gap: 8px 18px; }
.table-like div { padding: 8px 0; border-bottom: 1px solid #ddd; }
form input, form textarea { width:100%; padding:15px; margin-bottom:10px; border: none; border-radius: 4px; }
form textarea { min-height: 140px; resize: vertical; }
footer { background: #222; color: white; padding: 50px 10%; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
footer a { color: #FFD700; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.small { font-size: 0.95rem; opacity: 0.95; }
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  header { flex-direction: column; gap: 15px; text-align: center; }
  nav a { margin: 0 10px; display: inline-block; }
  .hero h1 { font-size: 3rem; }
  .two-col, .footer-grid, .table-like { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  h2 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.3rem; }
}
