/* ABOUT INTRO SECTION */
.about-intro {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 0;
}

.about-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-breadcrumb {
  display: inline-block;
  font-size: 14px;
  color: #6fa843; /* CEES green */
  margin-bottom: 24px;
}

.about-title {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #6f6f6f; /* industrial grey */
  text-transform: uppercase;
}

/* TABLET */
@media (max-width: 1024px) {
  .about-intro {
    padding: 30px 0;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-intro {
    padding: 20px 0;
  }

  .about-title {
    font-size: 24px;
    line-height: 1.2;
  }
}




/* ABOUT HERO IMAGE SECTION */
.about-hero {
  width: 100%;
  background-color: #ffffff;
  padding: 0;
}

.about-hero-image {
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DESKTOP LARGE */
@media (min-width: 1440px) {
  .about-hero-image {
    max-height: 90vh;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .about-hero-image {
    max-height: 70vh;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero-image {
    max-height: 55vh;
  }
}






/* BOARD COMMITMENT SECTION */
.board-commitment {
  background: #ffffff;
  padding: 80px 0;
}

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

.board-title {
  font-size: 28px;
  font-weight: 500;
  color: #6fa843; /* CEES green */
  margin-bottom: 32px;
  text-transform: uppercase;
}

.board-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #6f6f6f;
  margin-bottom: 22px;
}

.board-content .highlight {
  color: #6fa843;
  font-weight: 600;
}

.board-content .signature {
  margin-top: 32px;
}

/* CTA BAR */
.board-cta {
  display: flex;
  width: 100%;
  min-height: 60px;
}

.cta-left {
  flex: 1.5;
  background: #f4f4f4;
  color: #6fa843;
  display: flex;
  align-items: center;
  padding: 0 40px;
  font-size: 18px;
}

.cta-right {
  flex: 1;
  background: #5a9e1b;
  color: #ffffff;
  padding: 0 48px;
  display: flex;
  align-items: center;
  font-size: 15px;
  text-decoration: none;
  gap: 10px;
  transition: background 0.3s ease;
}

.cta-right:hover {
  background: #4c8c16;
}

/* MOBILE */
@media (max-width: 768px) {

  .board-commitment {
    padding: 40px 0;
  }

  .board-title {
    font-size: 22px;
  }

  .board-container {
    padding: 0 20px;
    text-align: justify;
  }

  .board-content p {
    font-size: 15px;
  }

  .board-cta {
    flex-direction: column;
  }

  .cta-left,
  .cta-right {
    justify-content: center;
    padding: 18px;
    text-align: center;
  }
}









/* LOGO STORY VIDEO SECTION */
.logo-story {
  background: #5a9e1b; /* CEES green */
  padding: 80px 0;
}

.logo-story-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-story-label {
  display: block;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* VIDEO BOX */
.logo-video-wrapper {
  max-width: 740px;
  background: #5a9e1b;
  margin: 0 auto;
  padding: 0px;
}

.logo-video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo-story {
    padding: 40px 0;
  }

  .logo-story-label {
    margin-bottom: 24px;
  }

  .logo-video-wrapper {
    padding: 0;
  }
}








/* CORE VALUES */
.core-values {
  background: #ffffff;
  padding: 80px 0;
}

.core-values-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.core-values-header {
  max-width: 520px;
  margin-bottom: 80px;
}

.core-values-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #5a9e1b; /* CEES green */
  margin-bottom: 20px;
}

.core-values-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #7a7a7a;
}

/* GRID */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

/* BOX */
.core-value-box img {
  width: 48px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.core-value-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #6f6f6f;
  margin-bottom: 16px;
  line-height: 1.4;
}

.core-value-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #8a8a8a;
}

/* TABLET */
@media (max-width: 1024px) {
  .core-values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .core-values {
    padding: 80px 0;
  }

  .core-values-header h2 {
    font-size: 32px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}




/* COMPANY SECTION */
.company-section {
  width: 100%;
  background: #ffffff;
  margin: 80px 0 40px 0;
}

.company-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* IMAGE */
.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.company-content {
  background: #5a9e1b;
  color: #ffffff;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.company-label {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.company-content h2 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 32px;
}

.company-content p {
  font-size: 15.5px;
  line-height: 1.75;
  opacity: 0.95;
  margin-bottom: 22px;
  max-width: 520px;
}

/* BUTTON – STICK TO WALL */
.company-btn {
  position: absolute;
  right: 0;
  bottom: 0;

  background: #f6f6f6;
  color: #5a9e1b;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  z-index: 2;
}

.company-btn:hover {
  background: #f2f2f2;
}


/* TABLET */
@media (max-width: 1024px) {
  .company-content {
    padding: 80px 48px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .company-wrapper {
    grid-template-columns: 1fr;
  }

  .company-image {
    height: 320px;
  }

  .company-content {
    padding: 64px 32px;
  }

  .company-content h2 {
    font-size: 32px;
  }
}







.gs-team-intro {
  padding: 40px 0 0 0;
}



.team-structure {
  width: 100%;
  padding: 40px 16px;
  background-color: #ffffff;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* VERY IMPORTANT */
}



@media (min-width: 1600px) {
  .team-structure {
    padding: 80px 0;
  }

  .team-image {
    max-width: 1200px;
  }
}





