/* Download Bar */
.ei-download-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  background: var(--Blue-300, #03489f);
  padding: 7px 15px;
  margin: 41px 0;
  text-decoration: none;
  cursor: pointer;
}

.ei-download-bar:hover {
  opacity: 0.92;
}

.ei-download-text {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}

.ei-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.ei-download-btn svg {
  width: 40px;
  height: 40px;
}

/* Environmental Initiatives Section */
.ei-section {
  margin: 60px 0;
}

.ei-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left sticky panel */
.ei-sticky-panel {
  width: 45%;
  height: 445px;
  position: sticky;
  top: 209px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
}

.ei-sticky-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* Right content panel */
.ei-content-panel {
  flex: 1;
  min-width: 0;
}

.ei-content-heading {
  color: #03489f;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 19px;
  max-width: 500px;
}

.ei-para-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.ei-para-row:last-child {
  margin-bottom: 0;
}

.ei-sun-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.ei-content-card p {
  color: var(--Blue-400, #00243d);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  margin: 0;
}

/* Scroll anchor offset */
.ei-scroll-anchor {
  scroll-margin-top: 180px;
}

/* Bottom links grid */
.ei-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 31px;
  margin-top: 60px;
}

.ei-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 20px;
  border-radius: 14px;
  border-bottom: 1px solid var(--Yellow-300, #fca312);
  background: #fff6e7;
  text-decoration: none;
  color: #00243d;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ei-link-card:hover {
  box-shadow: 0 4px 16px rgba(0, 36, 61, 0.1);
  transform: translateY(-2px);
}

.ei-link-card span {
  color: var(--Blue-300, #03489f);
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}

.ei-link-card img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .ei-layout {
    gap: 28px;
  }

  .ei-sticky-panel {
    width: 45%;
    height: 400px;
  }

  .ei-content-heading {
    font-size: 28px;
  }

  .ei-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .ei-layout {
    flex-direction: column;
    gap: 16px;
  }

  .ei-sticky-panel {
    width: 100%;
    height: 300px;
    position: relative;
    top: auto;
  }

  .ei-content-heading {
    font-size: 26px;
  }

  .ei-links-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
  }
}

@media (max-width: 479px) {
  .ei-download-bar {
    margin-top: 17px;
    padding: 0 15px;
  }

  .ei-download-text {
    font-size: 14px;
  }

  .ei-download-btn {
    width: 25px;
  }

  .ei-para-row {
    margin-bottom: 16px;
  }

  .ei-section {
    margin: 36px 0;
  }

  .ei-sticky-panel {
    height: 240px;
  }

  .ei-content-heading {
    font-size: 22px;
  }

  .ei-links-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .ei-link-card {
    padding: 14px 16px;
    font-size: 13px;
  }

  .ei-link-card span {
    font-size: 14px;
  }
}
