* {
  margin: 0; 
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: #064e3b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #34d399;
  outline-offset: 2px;
}

.navbar {
  background: #064e3b;
  color: #fff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.3rem;
}

.logo i {
  color: #34d399;
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-weight: 500;
  align-items: center;
}

.nav-links a {
  color: #d1fae5;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #6ee7b7;
}

.portal-link {
  color: #34d399 !important;
}

.btn-join {
  background: #34d399;
  color: #064e3b !important;
  padding: 6px 16px;
  border-radius: 40px;
  font-weight: 600;
}

.btn-join:hover {
  background: #6ee7b7;
}

.btn-admin {
  background: transparent;
  border: 1px solid #34d399;
  color: #34d399 !important;
  padding: 6px 10px;
  border-radius: 40px;
  font-weight: 600;
}

.btn-admin:hover {
  background: #34d399;
  color: #064e3b !important;
}

section {
  padding: 60px 0;
  border-bottom: 1px solid #e9edf2;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title i {
  color: #34d399;
  background: #064e3b;
  padding: 8px 12px;
  border-radius: 40px;
  font-size: 1.4rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1.2;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #064e3b;
}

.hero-sub {
  font-size: 1.2rem;
  color: #047857;
  font-weight: 600;
  margin: 12px 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.latest-news {
  margin-top: 28px;
  background: #d1fae5;
  padding: 16px 24px;
  border-radius: 60px;
  display: inline-block;
  color: #064e3b;
}

.latest-news i {
  color: #059669;
}

.hero-risk-card {
  flex: 1;
  background: #064e3b;
  color: white;
  padding: 32px;
  border-radius: 40px;
}

.risk-icon {
  font-size: 3rem;
  color: #34d399;
}

.hero-risk-card h3 {
  margin: 8px 0;
  color: #6ee7b7;
}

.badge {
  background: #064e3b;
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
}

.hero-risk-card .badge {
  background: #34d399;
  color: #064e3b;
}

.grid-2 {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(6, 78, 59, 0.06);
  transition: 0.2s;
  border-top: 3px solid #34d399;
}

.card:hover {
  box-shadow: 0 12px 28px rgba(6, 78, 59, 0.12);
}

.card ul {
  list-style: disc;
  padding-left: 20px;
}

.card h3 {
  color: #064e3b;
  margin-bottom: 8px;
}

.card h4 {
  color: #047857;
}

.why-join {
  margin-top: 28px;
  background: #ecfdf5;
}

.exec-card {
  text-align: center;
}

.exec-card img {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  background: #d1fae5;
  margin-bottom: 16px;
}

.exec-card h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #064e3b;
}

.role {
  color: #064e3b;
  font-weight: 600;
  background: #34d399;
  display: inline-block;
  padding: 0 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.vacant-card {
  border-top: 3px solid #f59e0b;
  background: #fffbeb;
}

.vacant-role {
  background: #f59e0b;
  color: #ffffff;
}

.text-sm {
  font-size: 0.9rem;
}

.btn-primary {
  background: #059669;
  color: white;
  padding: 10px 32px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #047857;
}

.btn-outline {
  border: 2px solid #059669;
  background: transparent;
  padding: 10px 28px;
  border-radius: 60px;
  font-weight: 600;
  color: #059669;
  transition: 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: #059669;
  color: white;
}

.reg-btn {
  margin-top: 12px;
}

.partner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.badge.partner {
  background: #064e3b;
  padding: 8px 20px;
  font-size: 0.9rem;
  border: 1px solid #34d399;
}

.gallery-placeholder {
  height: 140px;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #065f46;
}

.announcement-card {
  border-left: 4px solid #34d399;
}

.ann-date {
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.portal-section {
  background: #ecfdf5;
}

.portal-box {
  background: #d1fae5;
  border-radius: 28px;
  padding: 36px;
  margin-top: 20px;
}

.portal-icon {
  font-size: 2.5rem;
  color: #059669;
}

.portal-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.portal-note {
  margin-top: 20px;
  font-size: 0.9rem;
}

.footer {
  background: #064e3b;
  color: #d1fae5;
  padding: 40px 0;
  text-align: center;
}

.footer a {
  color: #34d399;
  text-decoration: none;
}

.footer a:hover {
  color: #6ee7b7;
}

.footer-links {
  margin-top: 8px;
}

#announcements ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
}

#announcements li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .nav-flex {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
}
