/* === Color Palette === */
:root {
  --primary-green: #2ECC71;
  --accent-yellow: #F1C40F;
  --deep-black: #1C1C1C;
  --light-neutral: #F4F4F4;
  --dark-green: #145A32;
}

body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--light-neutral);
  color: var(--deep-black);
}

header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  /* Do not set overflow or margin here to avoid breaking sticky navbar */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.3s cubic-bezier(.4,0,.2,1), background 0.3s;
  background: #fff;
  color: var(--deep-black);
  box-shadow: 0 2px 4px rgba(44, 204, 113, 0.05);
}

.navbar.scrolled {
  background: #fff;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.logo img {
  height: 100px;
  transition: height 0.3s cubic-bezier(.4,0,.2,1);
  background: #fff;
  border-radius: 8px;
}

.navbar.scrolled .logo img {
  height: 40px;
}

.nav-groups {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-main {
  flex-direction: row;
  justify-content: flex-end;
}

.nav-secondary {
  flex-direction: row;
  justify-content: flex-end;
  font-size: 0.97rem;
  opacity: 0.85;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--deep-black);
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.25rem 0.5rem;
  border-bottom: 2px solid transparent;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: var(--primary-green);
  border-bottom: 2px solid var(--primary-green);
}

/* Hamburger menu */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #222;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  top: -10px;
}

.nav-toggle-label span::after {
  top: 10px;
}

/* Responsive nav */
@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
  }
  .nav-groups {
    width: 100%;
  }
  .nav-links {
    position: static;
    flex-direction: column;
    width: 100%;
    background: #fff;
    box-shadow: none;
    max-height: none;
    padding-bottom: 0;
    gap: 0.5rem;
  }
  .nav-main, .nav-secondary {
    margin: 0;
    padding: 0.5rem 0 0 0;
    border: none;
    font-size: 1rem;
    opacity: 1;
  }
  .nav-toggle:checked ~ .nav-groups .nav-links {
    display: flex;
  }
  .nav-groups {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 99;
    flex-direction: column;
    gap: 0.2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
  }
  .nav-toggle:checked ~ .nav-groups {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-toggle-label {
    display: block;
    position: absolute;
    top: 22px;
    right: 18px;
    z-index: 120;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 4px;
    transition: background 0.3s;
  }
  .nav-toggle-label span {
    transition: background 0.3s, transform 0.3s;
  }
  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }
  .nav-toggle:checked + .nav-toggle-label span::before {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle:checked + .nav-toggle-label span::after {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    transition: transform 0.3s;
  }
}
@media (min-width: 901px) {
  .nav-toggle-label {
    display: none !important;
  }
  .nav-groups {
    display: flex !important;
    position: static;
    width: auto;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #eee;
}

.slides {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 41.66%; /* 1200/500 ratio */
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active {
  background: var(--primary-green);
}

@media (max-width: 600px) {
  .slides {
    padding-bottom: 60%;
  }
  .logo img {
    height: 36px;
  }
}

/* Modern About Page Card-Based Design */
.about-section {
  background: #f4f4f4;
  padding: 3rem 1rem;
}
.about-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,204,113,0.07);
  max-width: 700px;
  margin: 0 auto 2rem auto;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
}
.about-card h2 {
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.section-underline {
  width: 60px;
  height: 4px;
  background: var(--primary-green);
  margin: 0.5rem auto 1.5rem auto;
  border-radius: 2px;
}
.about-card p {
  color: #222;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-container {
  max-width: 700px;
  margin: 0 auto;
}

.about-container p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 600px) {
  .about-section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .about-container p {
    font-size: 1rem;
  }
}

.expertise-section {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem auto;
  padding: 2.5rem 2rem 2.5rem 2rem;
  background: var(--light-neutral);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,159,227,0.07);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.expertise-section:hover {
  box-shadow: 0 8px 32px rgba(0,159,227,0.13);
  transform: translateY(-2px) scale(1.01);
}
.expertise-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.expertise-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f4f4f4;
  border-radius: 50%;
  margin-right: 1rem;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(44,204,113,0.07);
}
.expertise-header-icon i {
  font-size: 1.7rem;
  color: var(--primary-green);
  line-height: 1;
}
.expertise-header h2 {
  color: var(--primary-green);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.expertise-section-content {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
.expertise-img-col {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertise-img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,159,227,0.08);
  background: #f4f7fa;
}
.expertise-desc-col {
  flex: 2 1 320px;
  min-width: 0;
  display: flex;
  align-items: center;
}
.expertise-desc-col p {
  margin: 0;
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
}
.expertise-list-col {
  flex: 1 1 220px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.expertise-list-title {
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}
.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.expertise-list li {
  font-size: 1.05rem;
  color: #222;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.expertise-list .dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  background: var(--primary-green);
  border-radius: 50%;
  margin-right: 0.7rem;
}
@media (max-width: 1100px) {
  .expertise-section {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  }
  .expertise-section-content {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .expertise-img-col {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
  .expertise-desc-col, .expertise-list-col {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  .expertise-section {
    padding: 1rem 0.2rem 1rem 0.2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
  }
  .expertise-img {
    width: 90px;
    height: 60px;
  }
}

.clients-section {
  background: #f5f7fa;
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
}

.clients-section h2 {
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.clients-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
}

.client-logo {
  width: 120px;
  height: 60px;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
  filter: grayscale(100%);
}
.client-logo.active {
  opacity: 1;
  filter: none;
  transform: scale(1.08);
}

.clients-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.client-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}
.client-dot.active {
  background: var(--primary-green);
}

@media (max-width: 700px) {
  .clients-section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .client-logos {
    gap: 1rem;
  }
  .client-logo {
    width: 80px;
    height: 40px;
  }
}

.projects-section {
  background: #fff;
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
}

.projects-section h2 {
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  background: #fafbfc;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s, transform 0.2s;
}

.project-card:hover {
  box-shadow: 0 4px 16px rgba(0,159,227,0.10);
  transform: translateY(-4px) scale(1.03);
}

.project-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.project-info {
  padding: 1.2rem 1rem 1.5rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-info h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 0.7rem 0;
  color: #222;
}

.read-more {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  margin-top: auto;
  transition: color 0.2s;
}

.read-more:hover {
  color: #005f8a;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .projects-section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .projects-grid {
    gap: 1.2rem;
  }
  .project-img {
    height: 150px;
  }
  .project-info {
    padding: 0.8rem 0.5rem 1rem 0.5rem;
  }
}

.contact-section {
  background: #f7fbfd;
  color: #222;
  padding: 4rem 1rem 3rem 1rem;
  border-bottom: 1px solid #e0e7ef;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto 2.5rem auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,159,227,0.07);
  padding: 2.5rem 2rem;
  position: relative;
}

.contact-info {
  flex: 1 1 320px;
  min-width: 260px;
  margin-bottom: 2rem;
  border-right: 1px solid #e0e7ef;
  padding-right: 2rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.contact-email {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  word-break: break-all;
}

.contact-social {
  margin-top: 2rem;
}

.social-icon img {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
  border-radius: 6px;
  background: #fff;
  padding: 2px;
  transition: box-shadow 0.2s;
}
.social-icon img:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.contact-form {
  flex: 1 1 380px;
  min-width: 260px;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #cce6f7;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #f7fbfd;
  color: #222;
  resize: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary-green);
  outline: none;
}

.send-btn {
  background: var(--primary-green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.send-btn:hover {
  background: var(--dark-green);
}

.form-message {
  margin-top: 0.7rem;
  font-size: 1rem;
  min-height: 1.2em;
  color: var(--primary-green);
  font-weight: 700;
  text-align: left;
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
    padding: 1.5rem 0.5rem;
  }
  .contact-info {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #e0e7ef;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .contact-form {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .contact-container {
    padding: 1rem 0.2rem;
  }
}

.site-footer {
  background: var(--dark-green);
  color: #fff;
  position: relative;
  padding: 0;
  margin-top: 0;
  overflow: hidden;
}

.footer-bg img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  opacity: 0.18;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-company h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-nav li a:hover {
  color: var(--accent-yellow);
  text-decoration: underline;
}

.footer-legal {
  margin-bottom: 1rem;
}

.footer-link {
  color: #e0f7fa;
  margin: 0 0.7rem;
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--accent-yellow);
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.98rem;
  color: #e0f7fa;
  margin-top: 0.5rem;
}

@media (max-width: 700px) {
  .footer-content {
    padding: 1.5rem 0.5rem 0.7rem 0.5rem;
  }
  .footer-bg img {
    height: 100px;
  }
  .footer-nav {
    gap: 0.7rem;
  }
}

/* --- ABOUT PAGE STYLES --- */
.about-hero {
  text-align: center;
  background: #fff;
}
.about-hero-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
}
.about-intro {
  max-width: 700px;
  margin: 2.5rem auto 2rem auto;
  font-size: 1.18rem;
  color: #333;
  line-height: 1.7;
}

.about-mission, .about-goal, .about-strategy, .about-strength, .about-why, .about-reach {
  background: #ededed;
  padding: 3rem 1rem 2.5rem 1rem;
  text-align: center;
  color: #fff;
}

.about-mission h2, .about-goal h2, .about-strategy h2, .about-strength h2, .about-why h2, .about-partners-title {
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
}
.section-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-yellow);
  margin: 0 auto 0.7rem auto;
  border-radius: 2px;
}

.mission-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.mission-card {
  background: var(--dark-green);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,159,227,0.04);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  max-width: 320px;
  flex: 1 1 220px;
  position: relative;
  margin-bottom: 1rem;
}
.mission-bar {
  height: 6px;
  background: var(--accent-yellow);
  width: 100%;
  border-radius: 3px;
  margin-bottom: 1.2rem;
}

.about-goal p, .about-strategy p, .about-why-lead, .about-why p {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  font-size: 1.13rem;
  color: #333;
  line-height: 1.7;
}
.about-why-lead {
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.7rem;
}

.strength-card {
  background: var(--dark-green);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,159,227,0.04);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  max-width: 700px;
  margin: 2rem auto 0 auto;
  text-align: left;
}
.strength-card ul {
  margin: 1.2rem 0 0 0;
  padding-left: 1.2rem;
  color: #222;
  font-size: 1.08rem;
}
.strength-card li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
  color: #fff;
}

.about-team {
  background: #fff;
  padding: 3rem 1rem 2.5rem 1rem;
  text-align: center;
}
.about-team-lead {
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.team-photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.team-photo.main {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.2rem;
}
.team-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}
.team-photo {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  background: #f4f7fa;
}
.team-row .team-photo {
  width: 100px;
  height: 120px;
}

.about-reach {
  
  padding: 3rem 1rem 2.5rem 1rem;
  text-align: center;
  color: #fff;
}
.about-reach-lead {
  color: var(--primary-green);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.reach-map {
  width: 100%;
  max-width: 500px;
  margin: 1.5rem auto 2rem auto;
  display: block;
  border-radius: 10px;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.partners-logos img {
  width: 100px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 0.3rem 0.7rem;
}

.about-cta {
  position: relative;
  background: var(--dark-green);
  color: #fff;
  text-align: left;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 2rem;
}
.cta-bg img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  opacity: 0.18;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem 2rem 2.5rem;
}
.cta-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--accent-yellow);
}
.cta-btn {
  display: inline-block;
  background: var(--primary-green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: var(--dark-green);
}

@media (max-width: 900px) {
  .mission-cards {
    flex-direction: column;
    gap: 1.2rem;
  }
  .about-team {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .team-row {
    gap: 0.7rem;
  }
  .about-cta {
    min-height: 120px;
  }
  .cta-content {
    padding: 1.5rem 1rem 1rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .about-hero-img {
    max-height: 180px;
  }
  .about-intro {
    font-size: 1rem;
    margin: 1.2rem 0 1rem 0;
  }
  .about-mission, .about-goal, .about-strategy, .about-strength, .about-why, .about-reach {
    padding: 1.5rem 0.2rem 1.2rem 0.2rem;
  }
  .mission-card, .strength-card {
    padding: 1rem 0.5rem 0.7rem 0.5rem;
  }
  .about-team {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
  }
  .team-photo.main {
    width: 120px;
    height: 150px;
  }
  .team-photo {
    width: 70px;
    height: 90px;
  }
  .team-row .team-photo {
    width: 60px;
    height: 70px;
  }
  .reach-map {
    max-width: 100%;
    height: auto;
  }
  .partners-logos img {
    width: 70px;
    height: 28px;
    padding: 0.2rem 0.3rem;
  }
  .about-cta {
    min-height: 80px;
  }
  .cta-content {
    padding: 0.7rem 0.5rem 0.5rem 0.7rem;
  }
}
/* --- END ABOUT PAGE STYLES --- */

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,159,227,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}
.team-card:hover {
  box-shadow: 0 6px 24px rgba(0,159,227,0.13);
  transform: translateY(-4px) scale(1.04);
}
.team-card .team-photo {
  transition: transform 0.25s, filter 0.25s;
}
.team-card:hover .team-photo {
  transform: scale(1.07);
  filter: brightness(0.95) contrast(1.1);
}
.team-info {
  width: 100%;
  background: #f4f7fa;
  padding: 0.7rem 0.5rem 0.5rem 0.5rem;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: background 0.2s;
}
.team-card:hover .team-info {
  background: var(--primary-green);
}
.team-name {
  display: block;
  font-weight: 700;
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.team-card:hover .team-name {
  color: #fff;
  text-decoration: underline;
}
.team-position {
  display: block;
  font-size: 0.98rem;
  color: var(--primary-green);
  transition: color 0.2s;
}
.team-card:hover .team-position {
  color: #fff;
}

/* --- BIOGRAPHY PAGE STYLES --- */
.bio-profile {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto 2.5rem auto;
  padding: 0 1rem;
}
.bio-profile-img {
  flex: 0 0 180px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.bio-profile-img img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,159,227,0.08);
  background: #f4f7fa;
}
.bio-profile-info {
  flex: 1 1 400px;
  min-width: 0;
}
.bio-profile-info h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.3rem 0;
  color: #222;
}
.bio-profile-info h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary-green);
  margin: 0 0 0.7rem 0;
}
.bio-underline {
  width: 60px;
  height: 3px;
  background: var(--accent-yellow);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.bio-profile-info p {
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.bio-profile-info a {
  color: var(--primary-green);
  text-decoration: underline;
  word-break: break-all;
}

.bio-competencies {
  max-width: 1100px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 0 1rem;
}
.bio-competencies h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.competency-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.competency-list li {
  font-size: 1.05rem;
  color: #222;
  display: flex;
  align-items: center;
  min-width: 260px;
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--primary-green);
  border-radius: 50%;
  margin-right: 0.7rem;
}

@media (max-width: 900px) {
  .bio-profile {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem auto 1.5rem auto;
  }
  .bio-profile-img img {
    width: 140px;
    height: 170px;
  }
  .bio-profile-info h1 {
    font-size: 1.3rem;
  }
  .bio-profile-info h2 {
    font-size: 1rem;
  }
  .bio-competencies {
    margin: 1.5rem auto 1.5rem auto;
  }
  .competency-list li {
    min-width: 180px;
    font-size: 0.98rem;
  }
}
@media (max-width: 600px) {
  .bio-profile {
    padding: 0 0.2rem;
    margin: 1.2rem auto 1rem auto;
  }
  .bio-profile-img img {
    width: 90px;
    height: 110px;
  }
  .bio-competencies {
    padding: 0 0.2rem;
  }
  .competency-list {
    gap: 0.7rem 1.2rem;
  }
}
/* --- END BIOGRAPHY PAGE STYLES --- */

/* --- EXPERTISE PAGE STYLES --- */
.expertise-layout {
  position: relative;
}
.expertise-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  z-index: 1002;
  min-width: 44px;
  height: auto;
  justify-content: flex-start;
  padding: 0.5rem 0;
}
.sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #111;
  border-radius: 6px;
  margin-bottom: 0.2rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sidebar-icon img {
  width: 22px;
  height: 22px;
  filter: invert(1) brightness(2);
}
.sidebar-icon:hover, .sidebar-icon:focus {
  background: var(--primary-green);
  box-shadow: 0 4px 16px rgba(0,159,227,0.13);
}
.expertise-main-content {
  margin-left: 60px;
  flex: 1 1 0;
  min-width: 0;
}

.expertise-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.expertise-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f4f4f4;
  border-radius: 50%;
  margin-right: 1rem;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(44,204,113,0.07);
}
.expertise-header-icon i {
  font-size: 1.7rem;
  color: var(--primary-green);
  line-height: 1;
}
.expertise-header h2 {
  color: var(--primary-green);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.expertise-section-content {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.expertise-img-col {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertise-desc-col {
  flex: 2 1 320px;
  min-width: 0;
}
.expertise-list-col {
  flex: 1 1 220px;
  min-width: 0;
}

@media (max-width: 1100px) {
  .expertise-sidebar {
    position: static;
    transform: none;
    flex-direction: row;
    width: 100%;
    height: auto;
    margin: 0 0 1.2rem 0;
    gap: 0.5rem;
    justify-content: center;
    background: none;
    z-index: 10;
    padding: 0;
  }
  .expertise-main-content {
    margin-left: 0;
    width: 100%;
  }
  .expertise-section-content {
    flex-direction: column;
    gap: 1.2rem;
  }
  .expertise-img-col {
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  .expertise-sidebar {
    display: none;
  }
  .expertise-main-content {
    margin-left: 0;
  }
  .expertise-header h2 {
    font-size: 1rem;
  }
  .expertise-header-icon {
    width: 26px;
    height: 26px;
  }
  .expertise-img-col {
    flex: 0 0 100px;
  }
  .expertise-img {
    width: 70px;
    height: 50px;
  }
  .sidebar-icon {
    width: 28px;
    height: 28px;
  }
  .sidebar-icon img {
    width: 16px;
    height: 16px;
  }
}
/* --- END EXPERTISE PAGE STYLES --- */

.expertise-hero {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: calc(-50vw + 50%);
  left: 0;
  right: 0;
}
.expertise-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.85);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  max-width: 100vw;
}
@media (max-width: 700px) {
  .expertise-hero {
    height: 220px;
    margin-left: 0;
  }
}

/* --- INDUSTRIES PAGE STYLES --- */
.industries-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industries-hero-img {
  width: 100vw;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}
.industries-hero-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  text-align: center;
}
.industries-hero-content h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.industries-intro {
  max-width: 700px;
  margin: 2rem auto 2.5rem auto;
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

.industries-grid-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 2rem;
}
.industry-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}
.industry-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.02);
}
.industry-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.industry-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.industry-read-more {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(0, 159, 227, 0.85);
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  opacity: 0;
  transition: opacity 0.2s;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.industry-img-wrap:hover .industry-read-more,
.industry-card:focus-within .industry-read-more {
  opacity: 1;
}
@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .industries-hero, .industries-hero-img {
    height: 180px;
  }
  .industries-hero-content h1 {
    font-size: 1.2rem;
  }
  .industries-intro {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .industry-img-wrap, .industry-img-wrap img {
    height: 140px;
  }
  .industry-read-more {
    opacity: 1;
    font-size: 0.98rem;
    padding: 0.4rem 0;
  }
}
.industry-card h3 {
  color: var(--primary-green);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 1rem 1rem 0.5rem 1rem;
  text-align: left;
}
.industry-card p {
  color: #444;
  font-size: 0.98rem;
  margin: 0 1rem 1.2rem 1rem;
  text-align: left;
  line-height: 1.5;
}
/* --- END INDUSTRIES PAGE STYLES --- */

/* --- INDUSTRY DETAIL PAGE STYLES --- */
.industry-detail-section {
  background: #fff;
  padding: 3rem 1rem 2.5rem 1rem;
}
.industry-detail-container {
  display: flex;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}
.industry-detail-images {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.industry-detail-images img {
  width: 100%;
  max-width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,159,227,0.07);
  background: #f4f7fa;
}
.industry-detail-content {
  flex: 1 1 0;
  min-width: 0;
}
.industry-detail-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.3rem 0;
}
.industry-detail-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 0.2rem;
}
.industry-detail-underline {
  width: 60px;
  height: 3px;
  background: var(--accent-yellow);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.industry-detail-content p {
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.industry-back-link {
  display: inline-block;
  color: var(--primary-green);
  text-decoration: underline;
  font-size: 1.02rem;
  margin-top: 1.5rem;
  transition: color 0.2s;
}
.industry-back-link:hover {
  color: #005f8a;
}
@media (max-width: 900px) {
  .industry-detail-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .industry-detail-images {
    flex-direction: row;
    gap: 0.7rem;
    justify-content: flex-start;
  }
  .industry-detail-images img {
    max-width: 180px;
    height: 110px;
  }
}
@media (max-width: 600px) {
  .industry-detail-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
  }
  .industry-detail-images {
    flex-direction: column;
    gap: 0.5rem;
  }
  .industry-detail-images img {
    max-width: 100%;
    height: 90px;
  }
  .industry-detail-content h1 {
    font-size: 1.2rem;
  }
  .industry-detail-subtitle {
    font-size: 0.98rem;
  }
  .industry-detail-underline {
    width: 40px;
    height: 2px;
    margin-bottom: 0.7rem;
  }
  .industry-detail-content p {
    font-size: 0.98rem;
  }
}
/* --- END INDUSTRY DETAIL PAGE STYLES --- */

/* --- CONTACT US PAGE STYLES --- */
.contactus-hero {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}
.contactus-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}
.contactus-subtitle {
  color: #666;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.contactus-main {
  background: #fff;
  padding: 2rem 1rem 2.5rem 1rem;
}
.contactus-container {
  display: flex;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}
.contactus-form {
  flex: 1 1 340px;
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contactus-form-row {
  display: flex;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  margin-bottom: 0.2rem;
}
.form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 0.3rem;
}
.form-group label span {
  color: #e53935;
  margin-left: 2px;
}
.contactus-form input,
.contactus-form textarea {
  border: 1px solid #e0e7ef;
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #222;
  margin-bottom: 0.1rem;
  transition: border 0.2s;
}
.contactus-form input:focus,
.contactus-form textarea:focus {
  border: 1.5px solid var(--primary-green);
  outline: none;
}
.contactus-services label {
  font-weight: 400;
  font-size: 1rem;
  margin-right: 1.2rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.services-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  margin-top: 0.3rem;
}
.send-btn {
  background: var(--primary-green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.7rem;
}
.send-btn:hover {
  background: var(--dark-green);
}
.contactus-info {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contactus-info-block {
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  margin-bottom: 0.2rem;
}
.contactus-info-block h3 {
  font-size: 1.08rem;
  color: var(--primary-green);
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.contactus-info-block p {
  color: #444;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
.contactus-links,
.contactus-phones {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contactus-links li a,
.contactus-phones li a {
  color: var(--primary-green);
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.2s;
}
.contactus-links li a:hover,
.contactus-phones li a:hover {
  color: #005f8a;
}
.contactus-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 8px;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .contactus-container {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .contactus-form, .contactus-info {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .contactus-hero {
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .contactus-hero h1 {
    font-size: 1.2rem;
  }
  .contactus-main {
    padding: 1rem 0.2rem 1.2rem 0.2rem;
  }
  .contactus-form {
    padding: 1rem 0.5rem 0.7rem 0.5rem;
  }
  .contactus-info-block {
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
  }
  .services-checkboxes {
    gap: 0.4rem 0.7rem;
  }
}
/* --- END CONTACT US PAGE STYLES --- */

/* WhatsApp Chat Button in Contact Us */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  border-radius: 2em;
  padding: 0.5em 1.2em;
  box-shadow: 0 2px 8px rgba(34, 139, 34, 0.08);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-size: 1rem;
}
.whatsapp-link i {
  font-size: 1.2em;
}
.whatsapp-link:hover, .whatsapp-link:focus {
  background: #128c7e;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(34, 139, 34, 0.15);
  text-decoration: none;
}
@media (max-width: 600px) {
  .whatsapp-link {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 0.7em 0.5em;
  }
}

/* --- WHY GHANA PAGE STYLES --- */
.ghana-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: calc(-50vw + 50%);
  left: 0;
  right: 0;
}
.ghana-hero-img {
  width: 100vw;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}
.ghana-hero-overlay {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 2;
}
.ghana-intro-section {
  background: #fff;
  padding: 2.5rem 1rem 2rem 1rem;
}
.ghana-intro-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
}
.ghana-intro-left {
  flex: 2 1 420px;
  min-width: 0;
}
.ghana-title {
  color: #009fe3;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: left;
}
.ghana-intro-left p {
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
}
.ghana-intro-right {
  flex: 1 1 320px;
  min-width: 220px;
  background: #fafbfc;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,159,227,0.06);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.ghana-facts-title {
  color: #009fe3;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}
.ghana-flag {
  width: 90px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.ghana-facts-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
  font-size: 0.98rem;
  color: #222;
  text-align: left;
}
.ghana-facts-list li {
  margin-bottom: 0.2rem;
}
.ghana-map {
  width: 120px;
  height: auto;
  margin-top: 0.7rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,159,227,0.08);
}
@media (max-width: 900px) {
  .ghana-intro-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .ghana-intro-right {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .ghana-hero, .ghana-hero-img {
    height: 120px;
  }
  .ghana-title {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .ghana-intro-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
  }
  .ghana-intro-right {
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
  }
  .ghana-flag {
    width: 60px;
    height: 36px;
  }
  .ghana-map {
    width: 70px;
  }
}
.ghana-overview-section {
  background: #fafbfc;
  padding: 2.5rem 1rem 2rem 1rem;
  text-align: center;
}
.ghana-overview-section .ghana-title {
  text-align: center;
}
.ghana-overview-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
  text-align: left;
}
@media (max-width: 600px) {
  .ghana-overview-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
  }
  .ghana-overview-text {
    font-size: 0.98rem;
  }
}
.ghana-guarantees-section {
  background: #fff;
  text-align: center;
  padding: 2rem 1rem 1.5rem 1rem;
}
.ghana-guarantees-title {
  color: #222;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.ghana-guarantees-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
  color: #009fe3;
  font-size: 1.05rem;
  line-height: 2;
}
.ghana-guarantees-list li {
  margin-bottom: 0.2rem;
  text-decoration: underline;
  cursor: pointer;
}
.ghana-guarantees-list li:hover {
  color: #005f8a;
}
.ghana-opportunities-section {
  background: #fafbfc;
  padding: 2.5rem 1rem 2rem 1rem;
  text-align: center;
}
.ghana-opportunities-section .ghana-title {
  text-align: center;
}
.ghana-opportunities-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
  text-align: left;
}
.ghana-opportunities-list {
  margin: 1.2rem 0 0 1.2rem;
  padding-left: 1.2rem;
  color: #222;
  font-size: 1.08rem;
  text-align: left;
}
.ghana-opportunities-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.ghana-info-box {
  background: #009fe3;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin: 2rem auto 0 auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,159,227,0.10);
}
.ghana-info-box-content p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .ghana-info-box {
    padding: 1rem 0.2rem;
    font-size: 0.98rem;
  }
}
/* --- END WHY GHANA PAGE STYLES --- */

/* --- DISCLAIMER PAGE STYLES --- */
.disclaimer-section {
  max-width: 700px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2.5rem 1rem 2rem 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,159,227,0.06);
  text-align: center;
}
.disclaimer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}
.disclaimer-text {
  text-align: left;
  color: #333;
  font-size: 1.08rem;
  line-height: 1.7;
}
.disclaimer-text a {
  color: #009fe3;
  text-decoration: underline;
  word-break: break-all;
}
@media (max-width: 600px) {
  .disclaimer-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
    margin: 1.2rem 0 1rem 0;
  }
  .disclaimer-title {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .disclaimer-text {
    font-size: 0.98rem;
  }
}
/* --- END DISCLAIMER PAGE STYLES --- */

/* --- COOKIE POLICY PAGE STYLES --- */
.cookie-section {
  max-width: 600px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2.5rem 1rem 2rem 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,159,227,0.06);
  text-align: center;
}
.cookie-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}
.cookie-text {
  text-align: left;
  color: #333;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cookie-logo img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .cookie-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
    margin: 1.2rem 0 1rem 0;
  }
  .cookie-title {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .cookie-text {
    font-size: 0.98rem;
    margin-bottom: 1rem;
  }
  .cookie-logo img {
    width: 120px;
  }
}
/* --- END COOKIE POLICY PAGE STYLES --- */

/* --- PRIVACY POLICY PAGE STYLES --- */
.privacy-section {
  max-width: 800px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2.5rem 1rem 2rem 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,159,227,0.06);
  text-align: center;
}
.privacy-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}
.privacy-text {
  text-align: left;
  color: #333;
  font-size: 1.08rem;
  line-height: 1.7;
}
.privacy-text h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.privacy-text strong {
  display: block;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 0.2rem;
  color: #222;
}
.privacy-text a {
  color: #009fe3;
  text-decoration: underline;
  word-break: break-all;
}
@media (max-width: 600px) {
  .privacy-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
    margin: 1.2rem 0 1rem 0;
  }
  .privacy-title {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .privacy-text {
    font-size: 0.98rem;
  }
  .privacy-text h2 {
    font-size: 1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
  }
}
/* --- END PRIVACY POLICY PAGE STYLES --- */

/* --- HOME EXPERTISE SECTION STYLES --- */
.home-expertise-section {
  display: block;
  max-width: 1200px;
  margin: 0 auto 3.5rem auto;
  padding: 3rem 1rem 2rem 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,159,227,0.07);
}
.expertise-title {
  color: #009fe3;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.7rem;
  text-align: center;
  display: block;
  width: 100%;
}
.section-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-yellow);
  margin: 0 auto 1.1rem auto;
  border-radius: 2px;
}
.home-expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
  margin-top: 0.5rem;
}
.home-expertise-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,204,113,0.07);
  padding: 1.5rem 1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  max-width: 200px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.home-expertise-card:hover {
  box-shadow: 0 4px 16px rgba(44,204,113,0.13);
  border-color: var(--dark-green);
}
.home-expertise-view {
  position: absolute;
  top: 1rem;
  left: 4rem;
  color: #009fe3;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s;
}
.home-expertise-view:hover {
  color: #005f8a;
}
.home-expertise-icon {
  margin: 1.5rem 0 1rem 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-expertise-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: invert(41%) sepia(99%) saturate(749%) hue-rotate(170deg) brightness(97%) contrast(101%);
}
.home-expertise-label {
  font-size: 1.05rem;
  color: #222;
  font-weight: 500;
  margin-top: 0.5rem;
  text-align: center;
}
@media (max-width: 1100px) {
  .home-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 1rem;
  }
}
@media (max-width: 700px) {
  .home-expertise-section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .expertise-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .home-expertise-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.2rem;
  }
  .home-expertise-card {
    min-width: 0;
    max-width: 100%;
    padding: 1rem 0.5rem 0.7rem 0.5rem;
  }
  .home-expertise-icon {
    margin: 1rem 0 0.7rem 0;
    width: 36px;
    height: 36px;
  }
  .home-expertise-icon img {
    width: 36px;
    height: 36px;
  }
  .home-expertise-label {
    font-size: 0.98rem;
  }
  .home-expertise-view {
    top: 0.7rem;
    left: 2.7rem;
    font-size: 0.95rem;
  }
  .section-underline {
    width: 40px;
    height: 2px;
    margin-bottom: 0.7rem;
  }
}
/* --- END HOME EXPERTISE SECTION STYLES --- */ 

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-green);
}

/* For underlines/accent bars, keep using var(--primary-green) or var(--accent-yellow) as appropriate */
.home-expertise-icon i {
  color: var(--primary-green);
  font-size: 2.2rem;
  display: block;
  margin: 0 auto 0.5rem auto;
}

.contact-social .social-icon i {
  color: var(--primary-green);
  font-size: 1.7rem;
  margin: 0 0.3rem;
  transition: color 0.2s;
}
.contact-social .social-icon:hover i {
  color: var(--accent-yellow);
}