:root {
  --navy: #0B1A39;
  --gold: #C9A63E;
}
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
}
/* Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text h1 {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  margin: 0;
  color: var(--navy);
}
.logo-text p {
  margin: 0;
  font-size: 12px;
  color: #444;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  transition: color 0.3s, background 0.3s;
  padding: 8px 10px;
  border-radius: 6px;
}
nav a:hover {
  background: var(--navy);
  color: white;
}
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
  }
  nav ul.open {
    display: flex;
  }
  .menu-toggle {
    background: none;
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: 6px;
    padding: 6px 10px;
    font-weight: 700;
    cursor: pointer;
  }
}
/* Hero Section */
.hero {
  background: url('images/services-hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 26, 57, 0.6);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero h1 {
  font-family: 'Lato', sans-serif;
  font-size: 40px;
  margin-bottom: 12px;
  font-weight: 800;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-secondary {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
/* Quick Stats Section */
.quick-stats {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.stat-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.stat-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  color: var(--navy);
  margin: 5px 0;
}

.stat-card p {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 15px;
}
/* Featured Services Section */
.featured-services {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.services-header {
  max-width: 700px;
  margin: 0 auto 50px;
}

.services-header h2 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  font-size: 32px;
  margin-bottom: 10px;
}

.services-header p {
  font-family: 'Open Sans', sans-serif;
  color: #444;
  font-size: 16px;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 15px;
  margin-bottom: 20px;
}

.learn-more {
  font-family: 'Open Sans', sans-serif;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.learn-more:hover {
  color: var(--navy);
}
/* Footer Section */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding-top: 60px;
  text-align: center;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 20px 40px;
  position: relative;
  z-index: 2;
}
.site-footer {
  position: relative;
  z-index: 2;
  clear: both;
}

.footer-contact h3,
.footer-newsletter h3 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--gold);
}

.footer-contact p,
.footer-newsletter p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #eee;
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a img {
  width: 22px;
  height: 22px;
  margin: 0 6px;
  filter: invert(92%) sepia(24%) saturate(1588%) hue-rotate(8deg) brightness(95%) contrast(90%);
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  padding: 10px 15px;
  border-radius: 6px;
  border: none;
  flex: 1;
  max-width: 220px;
}

.newsletter-form button {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #e0b948;
}
.footer-newsletter {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.footer-newsletter h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-newsletter p {
  color: #eee;
  font-size: 15px;
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 15px 20px;
  font-size: 14px;
  color: #ddd;
}

.footer-bottom .privacy-link {
  color: var(--gold);
  margin-right: 10px;
  text-decoration: none;
}

.footer-bottom .privacy-link:hover {
  text-decoration: underline;
}
/* About Section */
.about-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-content {
  flex: 1 1 550px;
}

.about-content h2 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 15px;
}

.about-content p {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mission-values {
  margin-top: 30px;
}

.mission h3,
.values h3 {
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  margin-bottom: 10px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.value-card {
  background: white;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
  flex: 1 1 100px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.value-card p {
  margin: 0;
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Timeline Section */
.timeline-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.timeline-section h2 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-left: 3px solid var(--gold);
  padding-left: 30px;
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-year {
  font-family: 'Lato', sans-serif;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.timeline-content {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.timeline-content h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-content p {
  color: #444;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  margin: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 15px;
  height: 15px;
  background: var(--gold);
  border-radius: 50%;
}
/* Active Navigation Link */
nav a.active {
  color: var(--gold);
  position: relative;
}

nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
/* Services Page */
.services-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.services-intro {
  max-width: 700px;
  margin: 0 auto 50px;
}

.services-intro h2 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  font-size: 32px;
  margin-bottom: 10px;
}

.services-intro p {
  font-family: 'Open Sans', sans-serif;
  color: #444;
  font-size: 16px;
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-header {
  width: 100%;
  background: var(--navy);
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #142850;
}

.accordion-content {
  background: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content ul {
  list-style: none;
  margin: 0;
  padding: 20px 25px;
}

.accordion-content li {
  font-family: 'Open Sans', sans-serif;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #333;
}

.accordion-content li:last-child {
  border-bottom: none;
}

.accordion-icon {
  font-weight: 700;
  font-size: 20px;
}

.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* Webinars Page */
.webinars-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.webinars-header {
  max-width: 700px;
  margin: 0 auto 50px;
}

.webinars-header h2 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  font-size: 32px;
  margin-bottom: 10px;
}

.webinars-header p {
  font-family: 'Open Sans', sans-serif;
  color: #444;
  font-size: 16px;
}

.webinar-grid {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.webinar-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.webinar-card h3 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 12px;
}

.webinar-card p {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 15px;
  margin: 5px 0;
}

.calendar-section {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.calendar-section h3 {
  font-family: 'Lato', sans-serif;
  color: var(--gold);
  margin-bottom: 10px;
}

.calendar-placeholder {
  border: 2px dashed var(--gold);
  padding: 40px;
  border-radius: 10px;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  background: #fffbea;
}

.past-webinars {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.past-webinars h3 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  margin-bottom: 15px;
}

.past-webinars ul {
  list-style: none;
  padding: 0;
}

.past-webinars li {
  margin-bottom: 10px;
}

.past-webinars a {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

.past-webinars a:hover {
  text-decoration: underline;
}
/* Improved Webinar Cards */
.webinar-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px; /* Ensures content and button spacing are consistent */
}

.webinar-details p {
  margin-bottom: 8px;
}

.webinar-card hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

.btn.btn-primary {
  margin-top: auto; /* Pushes button to bottom */
  align-self: flex-start; /* Ensures CTA button aligns neatly */
}
/* Simplified Team Page Styling */
.team-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.team-intro h2 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  font-size: 32px;
  margin-bottom: 10px;
}

.team-intro p {
  font-family: 'Open Sans', sans-serif;
  color: #444;
  font-size: 16px;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card-simple {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.team-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.team-card-simple h3 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 5px;
}

.team-card-simple .position {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card-simple .bio {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* Unique Hero Background for Team Page */
.hero-team {
  background-image: url('images/team-hero.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 160px 20px;   /* Adjust height as needed */
  color: white;
  position: relative;
}

/* Optional dark overlay for readability */
.hero-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.03); /* Dark overlay for contrast */
  z-index: 1;
}

.hero-team .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
/* Unique Hero Background for Services Page */
.hero-services {
  background-image: url('images/home-hero.jpeg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 160px 20px;   /* Adjust height as needed */
  color: white;
  position: relative;
}

/* Optional dark overlay for readability */
.hero-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.03); /* Dark overlay for contrast */
  z-index: 1;
}

.hero-services .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
/* Unique Hero Background for About Page */
.hero-about {
  background-image: url('images/about-hero.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 160px 20px;   /* Adjust height as needed */
  color: white;
  position: relative;
}

/* Optional dark overlay for readability */
.hero-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.03); /* Dark overlay for contrast */
  z-index: 1;
}

.hero-about.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
/* Unique Hero Background for Webinars Page */
.hero-webinars {
  background-image: url('images/webinars-hero.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 160px 20px;   /* Adjust height as needed */
  color: white;
  position: relative;
}

/* Optional dark overlay for readability */
.hero-webinars::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.03); /* Dark overlay for contrast */
  z-index: 1;
}

.hero-webinars.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
/* Contact Page */
.hero-contact {
  background-image: url('images/contact-hero.jpg');   /* Add your hero image */
  background-size: cover;
  background-position: center;
  padding: 160px 20px;
  position: relative;
  color: white;
}

.hero-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.05);
  z-index: 1;
}
.hero-contact .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-section {
  padding: 80px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-form h2,
.contact-info h2 {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  display: inline-block;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}

.social-icons {
  margin-top: 15px;
}
.social-icons .social-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
}

.social-icons .social-icon:hover {
  color: var(--gold);
}

.map-container {
  margin-top: 30px;
}

.map-container h3 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
/* Publications Page */
.hero-publications {
  background-image: url('images/publications-hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 160px 20px;
  position: relative;
  color: white;
}

.hero-publications::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 1;
}

.hero-publications .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.publications-section {
  padding: 80px 20px;
  background: #fff;
}

.publications-section h2 {
  font-family: 'Lato', sans-serif;
  text-align: center;
  color: var(--navy);
  margin-bottom: 40px;
  font-size: 30px;
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.publication-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.publication-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.publication-image {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 15px;
  display: block;
  border-radius: 8px;
}

.publication-desc {
  font-size: 14px;
  color: #555;
  margin: 10px 0 20px;
}

.btn {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-secondary {
  background: var(--gold);
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
}
/* FAQ Page */
.hero-faq {
  background-image: url('images/faq-hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 20px;
  position: relative;
  color: white;
}
.hero-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.03);
}
.hero-faq .hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.faq-section {
  padding: 80px 20px;
  background: #fff;
}

.faq-section h2 {
  font-family: 'Lato', sans-serif;
  text-align: center;
  color: var(--navy);
  margin-bottom: 40px;
  font-size: 30px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border-bottom: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.accordion-header {
  background: #fff;
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  padding: 15px 20px;
  text-align: left;
  outline: none;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #f5f5f5;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 15px 0;
  font-size: 15px;
  color: #555;
}
/* Privacy Policy Page */
.hero-privacy {
  background-image: url('images/privacy-hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 20px;
  position: relative;
  color: white;
}
.hero-privacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.03);
}
.hero-privacy .hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.privacy-section {
  padding: 80px 20px;
  background: #fff;
}

.privacy-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.privacy-nav ul {
  list-style: none;
  padding: 0;
}
.privacy-nav ul li {
  margin-bottom: 10px;
}
.privacy-nav a {
  color: var(--navy);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  transition: color 0.3s ease;
}
.privacy-nav a:hover {
  color: var(--gold);
}

.privacy-content section {
  margin-bottom: 40px;
}
.privacy-content h3 {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}
.privacy-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .privacy-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .privacy-nav {
    margin-bottom: 40px;
  }
}
/* Adjust logo image */
.logo-image img {
  width: 240px;       /* Or adjust as desired */
  height: auto;
  object-fit: contain;
  display: block;
}
/* Persistent highlight for active nav link */
nav a.active {
  color: var(--gold);
  position: relative;
}

nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
/* Director Page */
.hero-director {
  background-image: url('images/team-hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 20px;
  position: relative;
  color: white;
}
.hero-director::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.03);
}
.hero-director .hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.director-section {
  padding: 80px 20px;
  background: #fff;
}

.director-container {
  display: grid;
  grid-template-columns: 200px 1fr 250px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.director-image img {
  width: 100%;
  border-radius: 12px;
}

.director-main-content h2 {
  font-family: 'Lato', sans-serif;
  margin-bottom: 15px;
  color: var(--navy);
}
.director-main-content h3 {
  margin-top: 25px;
  font-size: 20px;
  color: var(--navy);
}
.director-main-content ul {
  list-style: square inside;
  padding-left: 0;
  margin-top: 10px;
  color: #555;
}
.achievements-list li {
  margin-bottom: 5px;
}
.director-publications img {
  width: 120px;
  border-radius: 8px;
  margin-right: 10px;
}

.director-sidebar {
  background: rgba(0, 0, 0, 0.03);
  padding: 20px;
  border-radius: 10px;
}
.director-sidebar h3 {
  color: var(--navy);
  margin-bottom: 15px;
}
.director-sidebar ul {
  padding-left: 0;
  list-style: none;
}
.director-sidebar li {
  margin-bottom: 10px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-newsletter {
    align-items: center;
  }
}
@media (min-width: 801px) and (max-width: 1100px) {
  .footer-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-contact,
  .footer-newsletter {
    width: 100%;
    max-width: 500px;
  }
}
.video-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-list li {
  margin-bottom: 12px;
}

.video-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-list a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.video-list img {
  width: 40px;     /* Smaller thumbnail */
  height: 30px;    /* Smaller thumbnail */
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.video-list span {
  line-height: 1.3;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.news-list li {
  margin-bottom: 12px;
}

.news-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.news-list a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.news-list img {
  width: 40px;     /* same size as YouTube thumbs */
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.news-list span {
  line-height: 1.3;
}
.about-images {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.about-images img {
  width: 100%;
  max-width: 350px;   /* control size */
  height: 250px;      /* keeps equal height */
  object-fit: cover;  /* crops nicely without distortion */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Fix large gap between About and Timeline sections */
.about-section {
  padding-bottom: 10px !important;
  margin-bottom: 0 !important;
}

.timeline-section {
  margin-top: 0 !important;
  padding-top: 20px !important;
}
/* Reduce gap between Quick Stats and Featured Services */
.quick-stats {
  padding-bottom: 10px !important;   /* reduce space below stats */
  margin-bottom: 0 !important;
}

.featured-services {
  padding-top: 10px !important;      /* reduce space above services */
  margin-top: 0 !important;
}