@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");

.section-header {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 18px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  margin: 0;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, white, gray, white);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}
.services-section {
  padding: 20px 0;
  background-color: rgb(107, 136, 107);
  color: white;
}

.service-item {
  display: flex;
  /* align-items: center; */
  margin: 20px 0px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  padding: 0 20px;
  width: 100%;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-content {
  flex: 1;
  padding: 0 10px !important;
  background-color: white;
  color: black;
  padding: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.service-content p {
  font-size: 1rem;
  text-align: justify;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
  }

  .service-image,
  .service-content {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}

.about-dropdown {
  position: relative;
  display: block;
}

.about-dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  padding: 4px 12px;
}

.about-dropdown-menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: small;
}

.about-dropdown-menu a:hover {
  background-color: #f1f1f1;
}

.about-dropdown:hover .about-dropdown-menu {
  display: block;
}


/*  */

.news-gallery-container {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(250px, 1fr)
  ); /* Responsive column setup */
  gap: 25px;
  padding: 3rem 10%;
}

.news-gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; /* Added transition for scaling */
}

.news-gallery-item img {
  border-radius: 20px;
  height: auto; /* Set height to auto for responsive images */
  width: 100%;
  display: block; /* Removes bottom space under images */
  transition: transform 0.3s ease; /* Added transition for scaling */
}

.news-gallery-item:hover {
  transform: scale(1.05); /* Scale on hover */
}

:root {
  --primary-color: #56a86d;
  --secondary-color: #1a7b2a;
  --text-color: #333;
  --background-color: #f4f4f4;
}

.tech-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.tech-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.tech-title {
  font-size: 2.5rem;
}

.tech-subtitle {
  font-size: 1.2rem;
  font-weight: normal;
}

.tech-section {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  padding: 2rem;
}

.tech-section-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.tech-list {
  list-style-type: none;
  padding-left: 0;
}

.tech-list-item {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.tech-list-item::before {
  content: "•";
  color: var(--secondary-color);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
}

.tech-paragraph {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .tech-container {
    padding: 10px;
  }

  .tech-title {
    font-size: 2rem;
  }

  .tech-section {
    padding: 1rem;
  }
}

.history-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.history-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.history-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.history-subtitle {
  font-size: 1.2rem;
  font-weight: normal;
}

.history-timeline {
  position: relative;
  max-width: 1200px;
  margin: 2rem auto;
}

.history-timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.history-event {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.history-event::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid var(--primary-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.history-left {
  left: 0;
}

.history-right {
  left: 50%;
}

.history-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid var(--primary-color);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--primary-color);
}

.history-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid var(--primary-color);
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--primary-color) transparent transparent;
}

.history-right::after {
  left: -16px;
}

.history-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.history-year {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 10rem;
}

@media screen and (max-width: 600px) {
  .history-timeline::after {
    left: 31px;
  }

  .history-year {
    font-size: 4rem;
  }

  .history-event {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .history-event::before {
    left: 60px;
    border: medium solid var(--primary-color);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--primary-color) transparent transparent;
  }

  .history-left::after,
  .history-right::after {
    left: 15px;
  }

  .history-right {
    left: 0%;
  }
}

.technicality-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.technicality-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.technicality-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.technicality-subtitle {
  font-size: 1.2rem;
  font-weight: normal;
}

.technicality-section {
  background-color: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2rem;
}

.technicality-section-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.technicality-process-list {
  list-style-type: none;
  padding-left: 0;
}

.technicality-process-item {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.technicality-process-item::before {
  content: "•";
  color: var(--secondary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.technicality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.technicality-grid-item {
  background-color: var(--secondary-color);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.technicality-paragraph {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .technicality-container {
    padding: 10px;
  }

  .technicality-title {
    font-size: 2rem;
  }

  .technicality-section {
    padding: 1rem;
  }

  .technicality-grid {
    grid-template-columns: 1fr;
  }
}

.supply-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.supply-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.supply-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.supply-subtitle {
  font-size: 1.2rem;
  font-weight: normal;
}

.supply-section {
  background-color: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2rem;
}

.supply-section-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.supply-list {
  list-style-type: none;
  padding-left: 0;
}

.supply-list-item {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.supply-list-item::before {
  content: "•";
  color: var(--secondary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.supply-grid-item {
  background-color: var(--secondary-color);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.supply-paragraph {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .supply-container {
    padding: 10px;
  }

  .supply-title {
    font-size: 2rem;
  }

  .supply-section {
    padding: 1rem;
  }

  .supply-grid {
    grid-template-columns: 1fr;
  }
}

.buyback-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.buyback-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.buyback-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.buyback-subtitle {
  font-size: 1.2rem;
  font-weight: normal;
}

.buyback-section {
  background-color: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2rem;
}

.buyback-section-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.buyback-list {
  list-style-type: none;
  padding-left: 0;
}

.buyback-list-item {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.buyback-list-item::before {
  content: "•";
  color: var(--secondary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.buyback-highlight {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  margin: 0.5rem 0;
}

.buyback-contact {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.buyback-contact a {
  color: white;
  text-decoration: none;
}

.buyback-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .buyback-container {
    padding: 10px;
  }

  .buyback-title {
    font-size: 2rem;
  }

  .buyback-section {
    padding: 1rem;
  }
}

.loan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.loan-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.loan-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.loan-subtitle {
  font-size: 1.2rem;
  font-weight: normal;
}

.loan-section {
  background-color: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2rem;
}

.loan-section-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.loan-list {
  list-style-type: none;
  padding-left: 0;
}

.loan-list-item {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.loan-list-item::before {
  content: "•";
  color: var(--secondary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.loan-highlight {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  margin: 0.5rem 0;
}

.loan-subsection-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .loan-container {
    padding: 10px;
  }

  .loan-title {
    font-size: 2rem;
  }

  .loan-section {
    padding: 1rem;
  }
}

.viability-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.viability-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.viability-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.viability-subtitle {
  font-size: 1.2rem;
  font-weight: normal;
}

.viability-section {
  background-color: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2rem;
}

.viability-section-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.viability-list {
  list-style-type: none;
  padding-left: 0;
}

.viability-list-item {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.viability-list-item::before {
  content: "•";
  color: var(--secondary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.viability-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.viability-table th,
.viability-table td {
  border: 1px solid var(--secondary-color);
  padding: 0.5rem;
  text-align: left;
}

.viability-table th {
  background-color: var(--secondary-color);
  color: white;
}

.viability-highlight {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .viability-container {
    padding: 10px;
  }

  .viability-title {
    font-size: 2rem;
  }

  .viability-section {
    padding: 1rem;
  }

  .viability-table {
    font-size: 0.9rem;
  }
}

.licence-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.licence-header {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.licence-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.licence-header h2 {
  font-size: 1.5rem;
  font-weight: normal;
}

.licence-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.licence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.licence-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.licence-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.licence-card-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.licence-number {
  background-color: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.licence-title {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.licence-description {
  color: #666;
  font-size: 0.95rem;
}

.licence-additional {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.licence-additional h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.licence-additional ul {
  list-style-position: inside;
  color: #666;
}

.licence-additional li {
  margin-bottom: 0.5rem;
}

.licence-footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: auto;
}

.licence-footer p {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  .licence-grid {
    grid-template-columns: 1fr;
  }

  .licence-header h1 {
    font-size: 2rem;
  }

  .licence-header h2 {
    font-size: 1.25rem;
  }

  .licence-card {
    margin: 0 1rem;
  }
}

.bio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.bio-header {
  background-color: var(--primary-color);
  padding: 40px 20px;
  margin-bottom: 30px;
}

.bio-title {
  color: white;
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
}

.bio-subtitle {
  color: white;
  text-align: center;
  font-size: 18px;
  opacity: 0.9;
}

.bio-section {
  background: white;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
}

.bio-section-header {
  background: var(--secondary-color);
  padding: 15px 20px;
  color: white;
}

.bio-section-title {
  font-size: 24px;
  margin: 0;
  color: white;
}

.bio-content {
  padding: 20px;
}

.bio-paragraph {
  margin-bottom: 15px;
  line-height: 1.8;
}

.bio-list {
  list-style-type: none;
  padding: 0 20px;
  margin: 15px 0;
}

.bio-list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.bio-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.bio-highlight {
  border-left: 4px solid var(--primary-color);
  padding: 15px;
  margin: 20px 0;
  background-color: var(--background-color);
}

@media (max-width: 768px) {
  .bio-container {
    padding: 10px;
  }

  .bio-header {
    padding: 20px;
  }

  .bio-title {
    font-size: 24px;
  }

  .bio-section-title {
    font-size: 20px;
  }

  .bio-content {
    padding: 15px;
  }
}

.biodiesel__header {
  background: var(--primary-color);
  color: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.biodiesel__header h1 {
  font-size: 2.5rem;
  font-family: var(--heading-font);
}

.biodiesel__main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.biodiesel__resources,
.biodiesel__procurement {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  padding: 25px;
  transition: transform 0.3s ease-in-out;
}

.biodiesel__resources:hover,
.biodiesel__procurement:hover {
  transform: translateY(-10px);
}

.biodiesel__resources h2,
.biodiesel__procurement h2 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: 1.8rem;
}

.biodiesel__list {
  list-style: none;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--secondary-color);
}

.biodiesel__list li {
  padding: 10px 0;
  position: relative;
  padding-left: 20px;
}

.biodiesel__list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.biodiesel__procurement p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
}

.biodiesel__footer {
  text-align: center;
  padding: 20px;
  background: var(--primary-color);
  color: #fff;
  position: relative;
  bottom: 0;
  width: 100%;
}

.biodiesel__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Modern 3-column grid */
  gap: 20px;
  padding: 20px 0;
}

.biodiesel__images img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.biodiesel__images img:hover {
  transform: scale(1.05);
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .biodiesel__images {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

@media (max-width: 600px) {
  .biodiesel__images {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }

  .biodiesel__header {
    padding: 30px;
  }

  .biodiesel__main {
    padding: 20px;
  }
}

.ffa__header {
  background: var(--primary-color);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.ffa__main {
  padding: 20px;
}

.ffa__introduction,
.ffa__significance,
.ffa__conclusion {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 15px;
}

h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ffa__footer {
  text-align: center;
  padding: 10px;
  background: var(--primary-color);
  color: #fff;
}

.low-ffa__header {
  background: var(--primary-color);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.low-ffa__main {
  padding: 20px;

  ul {
    margin-left: 20px;
  }
}

.low-ffa__content,
.low-ffa__importance,
.low-ffa__characteristics,
.low-ffa__conclusion {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 15px;
}

h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.low-ffa__footer {
  text-align: center;
  padding: 10px;
  background: var(--primary-color);
  color: #fff;
}


.algae__header {
  background: var(--primary-color);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.algae__main {
  padding: 20px;
}

.algae__introduction,
.algae__growth,
.algae__diversity {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 15px;
}

h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.algae__footer {
  text-align: center;
  padding: 10px;
  background: var(--primary-color);
  color: #fff;
}


.glycerol__header {
  background: var(--primary-color);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.glycerol__main {
  padding: 20px;
}

.glycerol__introduction,
.glycerol__characterization {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 15px;
}

h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.glycerol__footer {
  text-align: center;
  padding: 10px;
  background: var(--primary-color);
  color: #fff;
}


.faq__header {
  background: var(--primary-color);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.faq__main {
  padding: 20px;
}

.faq__section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 15px;
}

h2 {
  margin-bottom: 20px;
}

h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.faq__footer {
  text-align: center;
  padding: 10px;
  background: var(--primary-color);
  color: #fff;
}



.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:hover>.gallery-img-overlay {
  opacity: 1;
  background-color: #00000069;
  pointer-events: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
}

.gallery-item:hover img {
  transform: scale(1.05);
  transition: transform 300ms ease-in;
}

.gallery-img-overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms ease-in;
}

.gallery-img-overlay i {
  color: rgb(30, 132, 30);
  font-size: 42px;
}

/* modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.gallery-modal-content {
  background-color: #fff;
  padding: 20px;
  position: relative;
  width: 95%;
  max-width: 600px;
}

.gallery-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Carousel styles */
.gallery-carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-height: 400px;
  position: relative;
}

.gallery-carousel img {
  width: 100%;
  height: auto;
}

.gallery-carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}
