/* ====================================================
   SSNeP+ Website — Global Stylesheet
   Design: Blue & White corporate NGO style
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@400;500;700;900&display=swap');

/* ---- CSS Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1565C0;
  --blue-dark:   #0D47A1;
  --blue-light:  #1976D2;
  --blue-hover:  #1E88E5;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --text-dark:   #222222;
  --text-mid:    #444444;
  --text-light:  #777777;
  --border:      #E0E0E0;
  --shadow:      0 2px 15px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 30px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================================================
   TOP BAR
   ==================================================== */
.top-bar {
  background: var(--blue);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left { display: flex; align-items: center; gap: 14px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar a { color: var(--white); }
.top-bar a:hover { opacity: 0.8; }
.top-bar .social-links { display: flex; gap: 10px; }
.top-bar .social-links a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 12px;
  transition: background 0.2s;
}
.top-bar .social-links a:hover { background: rgba(255,255,255,0.2); }
.top-bar .contact-info { display: flex; gap: 20px; }
.top-bar .contact-info span { display: flex; align-items: center; gap: 6px; }
.top-bar .contact-info .icon { font-size: 12px; opacity: 0.8; }

/* ====================================================
   HEADER / NAVIGATION
   ==================================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 50px; height: 50px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px; font-weight: 900;
  flex-shrink: 0;
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1.2;
}
.logo-text .org-name {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo-text .org-abbr {
  font-size: 10px;
  color: var(--blue);
  font-weight: 600;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--blue); }
.main-nav > li > a .caret {
  font-size: 10px;
  margin-left: 3px;
  display: inline-block;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--blue);
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  border-top: 3px solid var(--blue-dark);
}
.dropdown-menu li a {
  display: block;
  padding: 11px 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.dropdown-menu li a:hover { background: var(--blue-dark); }
.main-nav > li:hover .dropdown-menu { display: block; }

/* Search icon */
.nav-search {
  background: none; border: none; cursor: pointer;
  color: var(--text-dark); font-size: 16px; padding: 8px;
  transition: color 0.2s;
}
.nav-search:hover { color: var(--blue); }

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: all 0.3s;
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background: #222 url('../assets/images/hero.png') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 20px 60px 60px;
  color: var(--white);
}
.hero-content h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-content p {
  font-size: 14px;
  margin-bottom: 28px;
  opacity: 0.9;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: white; }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; }

/* ====================================================
   PAGE BANNER (inner pages)
   ==================================================== */
.page-banner {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333 url('../assets/images/banner-bg.png') center/cover no-repeat;
  text-align: center;
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.60);
}
.page-banner-content {
  position: relative; z-index: 2;
  color: var(--white);
}
.page-banner-content h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ====================================================
   SECTION COMMON
   ==================================================== */
.section { padding: 70px 0; }
.section-sm { padding: 50px 0; }
.section-title {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.section-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-heading span { color: var(--blue); }

/* ====================================================
   MISSION STRIP (Home)
   ==================================================== */
.mission-strip {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}
.mission-content {
  background: var(--white);
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission-content .label {
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mission-content h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.mission-content p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.8;
}
.mission-image {
  background: var(--blue) url('../assets/images/hiv-awareness.png') center/cover no-repeat;
  min-height: 280px;
}

/* ====================================================
   PROGRAMS / CARDS GRID
   ==================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.program-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.program-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.program-card-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 40px;
}
.program-card-body { padding: 20px; }
.program-card-body h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.program-card-body p {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.7;
}
.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.read-more:hover { gap: 8px; }
.read-more::after { content: '❯'; font-size: 11px; }

/* ====================================================
   TEAM CARDS
   ==================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.team-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  background: #ccc;
}
.team-photo-placeholder {
  width: 100%; height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #455A64 0%, #263238 100%);
}
.team-info {
  background: var(--blue);
  padding: 12px 14px;
}
.team-info h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}
.team-card-role {
  padding: 8px 14px 12px;
  font-size: 12px;
  color: var(--text-mid);
  font-style: italic;
  background: var(--white);
}
.team-social {
  padding: 0 14px 14px;
  display: flex; gap: 8px; background: var(--white);
}
.team-social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.team-social a:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  background: url('../assets/images/banner-bg.png') center/cover no-repeat;
  position: relative;
  padding: 50px 0;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(21, 101, 192, 0.75);
}
.cta-banner .container {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-banner p {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  flex: 1;
}
.btn-cta {
  background: var(--text-dark);
  color: var(--white);
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-cta:hover { background: #333; color: white; }

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-text { max-width: 900px; }
.about-text p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.9;
}
.about-text a { color: var(--blue); font-weight: 600; }

.three-zeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.zero-card {
  background: var(--blue);
  color: white;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s;
}
.zero-card:hover { transform: translateY(-4px); }
.zero-card .zero-icon { font-size: 40px; margin-bottom: 12px; }
.zero-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.zero-card p { font-size: 13px; opacity: 0.9; }

/* ====================================================
   PORTFOLIO / GALLERY
   ==================================================== */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--blue);
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(21,101,192,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
  padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.portfolio-overlay p { font-size: 12px; opacity: 0.9; }

/* Portfolio placeholder */
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 48px;
}

/* ====================================================
   NEWS PAGE
   ==================================================== */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.news-list { display: flex; flex-direction: column; gap: 30px; }
.news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.news-item-img {
  height: 140px;
  object-fit: cover;
  width: 200px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 30px; flex-shrink: 0;
}
.news-item-body h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.news-item-body h3 a:hover { color: var(--blue); }
.news-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex; gap: 14px;
}
.news-item-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Sidebar */
.sidebar-widget { margin-bottom: 36px; }
.sidebar-title {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
}
.recent-posts li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.recent-posts li a:hover { color: var(--blue); }
.subscribe-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 13px;
  margin-bottom: 10px;
  outline: none;
}
.subscribe-form input[type="email"]:focus { border-color: var(--blue); }
.subscribe-form button {
  width: 100%;
  padding: 10px;
  background: var(--blue);
  color: white;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.subscribe-form button:hover { background: var(--blue-dark); }

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.contact-info-card p, .contact-info-card a {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--blue); }

/* Contact Form */
.contact-form-box h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.captcha-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.captcha-box input {
  width: 60px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  text-align: center;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.footer-col ul li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
  padding: 4px 0;
}
.footer-col ul li a:hover { color: var(--blue-hover); padding-left: 6px; }
.footer-address p { font-size: 13px; margin-bottom: 8px; line-height: 1.6; }
.footer-address strong { color: white; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--blue); color: white; border-color: var(--blue); }

.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  font-size: 13px;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
  padding: 10px 14px;
  background: var(--blue);
  color: white;
  border: none;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 600;
}
.newsletter-form button:hover { background: var(--blue-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .three-zeros { grid-template-columns: 1fr; }
  .mission-strip { grid-template-columns: 1fr; }
  .mission-image { min-height: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav > li > a { padding: 12px 20px; border-bottom: 1px solid var(--border); }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; }
  .dropdown-menu li a { padding-left: 36px; background: #f5f7fa; }

  .hero-content { padding: 40px 20px; }
  .hero-content h1 { font-size: 26px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .top-bar .contact-info { display: none; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .mission-content { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; }
  .news-item-img { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 22px; }
}
