body {
    background-color: #f5f5f0;
    font-family: Sora, Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    margin: 0;
}

/* Hero image */
.hero {
    width: 100%;
    height: 100vh;       /* full viewport height */
    overflow: hidden;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(81, 128, 54, 0.4); /* semi-transparent greenish */
    /* orangeish color, you could use rgba(255, 102, 0, 0.4)
    Soft brown/tan: rgba(140, 90, 50, 0.25)
    Warm olive/greenish: rgba(100, 120, 80, 0.25)
    Muted warm grey: rgba(80, 70, 60, 0.25)
    greenish  rgba(81, 128, 54, 0.4) */
    z-index: 1; /* sits on top of image but below text */
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;  /* above overlay */
}

/* Navbar initial state */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 70px;
    position: fixed;       /* over the hero */
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent; /* desktop: transparent over hero */
    transition: background-color 0.3s, box-shadow 0.3s;
    z-index: 10;
}

/* Navbar sticky after scrolling */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #518036 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Logo */
.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    max-height: 60px;
    display: block;
}

@media (max-width: 520px) {
  .navbar .logo img {
    max-height: 44px;
    width: auto;
  }
  .navbar {
    padding: 0 12px;
  }
  .hamburger {
    display: inline-flex;
    position: relative;
    z-index: 1004;
  }
  .navbar ul {
    padding-top: 72px;
  }
}

/* Nav links */
.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    height: 100%;
    background-color: transparent; /* allow hover effect */
}

.navbar li {
    flex: 1;
    display: flex;          /* important for full-height hover */
    align-items: stretch;
    text-align: center;
}

.navbar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #FF6600;
}

/* Ensure navbar uses the same font as hero */
.navbar, .navbar a, .navbar li {
    font-family: Sora, Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans" !important;
}

/* Language flags inline (no dropdown) */
.navbar .lang-flags {
  flex: 0 0 auto;        /* don't stretch like other items */
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar .lang-flags a {
  padding: 0 6px;        /* smaller hit area than full nav items */
  background: transparent;
  cursor: pointer;
}
.navbar .lang-flags a:hover {
  background: transparent; /* avoid orange hover on flags */
}

/* Hamburger button (hidden on desktop) */
.hamburger {
  display: none;
  width: 28px;
  height: 24px;
  padding: 0;
  margin: 0 10px 0 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  margin: 4px 0;
}

/* Navbar language dropdown */
.dropdown.lang-dropdown { position: relative; }
.lang-toggle { cursor: pointer; }
.lang-menu {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 160px;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    background: rgba(7, 11, 20, .9);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    display: none;
    z-index: 1001;
    backdrop-filter: blur(8px);
}
.lang-menu li { flex: none; display: block; }
.lang-menu a {
    display: block;
    padding: 8px 12px;
    text-align: left;
    color: #fff;
    background: transparent;
}
.dropdown.lang-dropdown:hover .lang-menu { display: block; }
.lang-menu a:hover { background: rgba(255,255,255,.08); }

 .container {
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

 .content {
  width: 80px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}

 .company-logo {
  position: relative;
  width: 84px;
  height: 36px;
  margin-left: -2.00px;
  margin-right: -2.00px;
}

 .logo-wide {
  position: relative;
  top: calc(50.00% - 18px);
  left: calc(50.00% - 35px);
  width: 70px;
  height: 36px;
}

 .vector {
  position: absolute;
  width: 26.87%;
  height: 44.29%;
  top: 30.21%;
  left: 72.59%;
}

 .img {
  position: absolute;
  width: 27.77%;
  height: 68.55%;
  top: 31.45%;
  left: 49.04%;
}

 .vector-2 {
  position: absolute;
  width: 26.87%;
  height: 44.29%;
  top: 30.21%;
  left: 26.51%;
}

 .vector-3 {
  position: absolute;
  width: 30.85%;
  height: 44.96%;
  top: 28.45%;
  left: 0;
}

 .vector-4 {
  position: absolute;
  width: 21.61%;
  height: 25.81%;
  top: 0;
  left: 0;
}

 .column {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex: 0 0 auto;
}

 .nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  position: relative;
  flex: 0 0 auto;
}

 .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

 .link-text {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: #ffffff;
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  white-space: nowrap;
  font-style: var(--text-regular-normal-font-style);
}

 .nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

 .img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

 .vector-5 {
  position: absolute;
  width: 52.48%;
  height: 29.69%;
  top: 36.26%;
  left: 23.76%;
}

 .actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

 .button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  border: 1px solid;
  border-color: var(--primitives-color-neutral-darkest);
}

 .text-wrapper {
  position: relative;
  width: fit-content;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: var(--primitives-color-neutral-darkest);
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  white-space: nowrap;
  font-style: var(--text-regular-normal-font-style);
}

 .button-wrapper {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -2.00px;
  margin-bottom: -2.00px;
  margin-right: -2.00px;
  background-color: var(--primitives-color-neutral-darkest);
  border: 1px solid;
  border-color: var(--primitives-color-neutral-darkest);
}

 .div {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  margin-left: -1.00px;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: var(--primitives-color-white);
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  white-space: nowrap;
  font-style: var(--text-regular-normal-font-style);
}

 .container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: var(--spacing-sizing-section-padding-padding-section-large)
    var(--spacing-sizing-page-padding-padding-global)
    var(--spacing-sizing-section-padding-padding-section-large)
    var(--spacing-sizing-page-padding-padding-global);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f5f5f0;
}

 .container-2 {
  display: flex;
  flex-direction: column;
  max-width: var(--spacing-sizing-container-container-large);
  align-items: center;
  gap: 80px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

 .placeholder-image {
  align-self: stretch;
  width: 100%;
  aspect-ratio: 1.78;
  position: relative;
  object-fit: cover;
}

 .div-2 {
  max-width: var(--spacing-sizing-max-width-max-width-large);
  gap: 32px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

 .content-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

 .medium-length-hero {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-h1-font-family);
  font-weight: var(--heading-h1-font-weight);
  color: var(--color-schemes-color-scheme-1-text);
  font-size: var(--heading-h1-font-size);
  text-align: center;
  letter-spacing: var(--heading-h1-letter-spacing);
  line-height: var(--heading-h1-line-height);
  font-style: var(--heading-h1-font-style);
}

 .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  font-family: var(--text-medium-normal-font-family);
  font-weight: var(--text-medium-normal-font-weight);
  color: var(--color-schemes-color-scheme-1-text);
  font-size: var(--text-medium-normal-font-size);
  text-align: center;
  letter-spacing: var(--text-medium-normal-letter-spacing);
  line-height: var(--text-medium-normal-line-height);
  font-style: var(--text-medium-normal-font-style);
}

 .actions-2 {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

 .div-wrapper {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -2.00px;
  margin-bottom: -2.00px;
  margin-left: -2.00px;
  background-color: var(--primitives-color-neutral-darkest);
  border: 1px solid;
  border-color: var(--primitives-color-neutral-darkest);
}

 .button-2 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-right: -1.00px;
  border: 1px solid;
  border-color: var(--primitives-color-neutral-darkest);
}

 .container-3 {
  display: flex;
  flex-direction: column;
  max-width: var(--spacing-sizing-container-container-large);
  align-items: center;
  gap: 80px;
  position: relative;
  width: var(--spacing-sizing-container-container-large);
  flex: 0 0 auto;
}

 .section-title {
  display: flex;
  flex-direction: column;
  max-width: var(--spacing-sizing-max-width-max-width-large);
  align-items: center;
  gap: 16px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

 .tagline-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

 .tagline {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--heading-tagline-font-family);
  font-weight: var(--heading-tagline-font-weight);
  color: var(--color-schemes-color-scheme-1-text);
  font-size: var(--heading-tagline-font-size);
  text-align: center;
  letter-spacing: var(--heading-tagline-letter-spacing);
  line-height: var(--heading-tagline-line-height);
  white-space: nowrap;
  font-style: var(--heading-tagline-font-style);
}

 .heading {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: Sora, Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  font-weight: 700;
  color: var(--color-schemes-color-scheme-1-text);
  font-size: 31px;  /* 30% bigger than heading-2 (24px * 1.3 = 31.2px) */
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2;
}

 .content-3 {
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

 .row {
  display: flex;
  height: 276px;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

 .div-3 {
  gap: 24px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

 .img-3 {
  position: relative;
  width: 48px;
  height: 48px;
}

/* Make the three about-section feature icons 69% bigger overall (~48 * 1.3 * 1.3) */
.about .row .img-3 {
  width: 81.12px;
  height: 81.12px;
}

 .heading-2,
 .heading-3 {
  font-size: 24px;  /* Consistent size for all sub-headings */
  text-align: left;  /* Left-aligned on desktop */
  letter-spacing: 0;
  line-height: 1.3;
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: Sora, Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  font-weight: 600;
  color: var(--color-schemes-color-scheme-1-text);
}

.about .div-3 .heading-2 {
  text-align: center; /* Center feature titles within the about row */
}

 .text {
  position: relative;
  align-self: stretch;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: var(--color-schemes-color-scheme-1-text);
  font-size: var(--text-regular-normal-font-size);
  text-align: center;
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  font-style: var(--text-regular-normal-font-style);
}

.actions-3 {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
  justify-content: center;
  width: 100%;
}

.button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  border: 1px solid;
  border-color: var(--primitives-color-neutral-darkest);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.button-4 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  text-decoration: none;
}

.button-3,
.button-3,
.button-4,
.button-2,
.div-wrapper {
  background: #FF6600;
  color: #ffffff;
  border-color: #FF6600;
  min-height: 48px;
  min-width: 160px;
  padding: 12px 28px;
  border-radius: 999px;
}

.button-4 .img-2,
.button-3 .img-2,
.div-wrapper .img-2,
.button-2 .img-2 {
  filter: brightness(0) invert(1);
}

.button-3 .text-wrapper,
.button-4 .text-wrapper,
.div-wrapper .div,
.button-2 .text-wrapper {
  color: inherit;
}

.button,
.button-2,
.button-3,
.button-4,
.div-wrapper,
button {
  cursor: pointer;
}

.actions-2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-3:hover,
.button-4:hover,
.button-2:hover,
.div-wrapper:hover,
.button:hover {
  border-color: #FF8A33;
  background: #FF8A33;
}

.articles-hero {
  padding: 96px 24px 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  padding: 0 24px 80px;
}

.article-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(25, 35, 25, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card .tagline-wrapper {
  justify-content: flex-start;
}

.article-detail {
  padding: 60px 24px;
  background: #f5f5f0;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 32px;
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.article-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.article-highlight {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.articles-layout {
  background: #f9faf8;
}

.articles-header {
  padding: 96px 24px 40px;
  text-align: center;
  background: linear-gradient(0deg, rgba(81, 128, 54, 0.28), rgba(81, 128, 54, 0.28)), url('../main/images/solarpanels__.jpg') center/cover;
}

.articles-header .heading {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 16px;
  color: #ffffff;
}

.articles-header .text-wrapper-2,
.articles-header .tagline {
  color: #ffffff;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  padding: 0 24px 80px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.articles-layout .articles-grid {
  margin-top: 20px;
}

.community-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(25, 35, 25, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 280px;
}

.card-top .heading-2 {
  margin: 0;
  font-family: Sora, Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  font-size: 26px;
}

.card-kicker {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FF6600;
  margin-bottom: 8px;
}

.article-card, .community-card {
  border: 1px solid rgba(0,0,0,0.04);
}

.card-actions {
  display: flex;
  align-items: center;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF6600;
  font-weight: 600;
  text-decoration: none;
}

.inline-link img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(100%) saturate(703%) hue-rotate(345deg) brightness(101%) contrast(101%);
}

.center-text {
  text-align: center;
  margin-top: 40px;
}

.contact-section {
  padding: 80px 0;
  background: #f9faf8;
}

.contact-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-panel {
  background: #fff;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(23, 33, 25, 0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.contact-text .heading-2 {
  font-size: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.status-message {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  border: 1px solid transparent;
}

.status-message.success {
  color: #0f4d1c;
  background: #e6f5e6;
  border-color: rgba(9, 110, 40, 0.25);
}

.status-message.error {
  color: #6c1b1b;
  background: #ffe6e6;
  border-color: rgba(192, 66, 66, 0.4);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: Sora, Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  font-weight: 500;
  color: var(--color-schemes-color-scheme-1-text);
}

.form-field span {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fafafa;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #518036;
  outline: none;
  box-shadow: 0 0 0 3px rgba(81, 128, 54, 0.2);
  background: #fff;
}

.form-button {
  align-self: flex-start;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  background: #518036;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.form-button:hover {
  background: #3d5f29;
}

@media (max-width: 768px) {
  .contact-panel {
    padding: 32px;
  }

  .form-button {
    width: 100%;
    text-align: center;
  }
}

 .component-wrapper {
  flex-direction: column;
  max-width: var(--spacing-sizing-container-container-large);
  align-items: flex-start;
  gap: 80px;
  display: flex;
  position: relative;
  width: var(--spacing-sizing-container-container-large);
  flex: 0 0 auto;
}

 .component {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 8px 0px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

 .list-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

 .content-4 {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  position: relative;
}

/* .heading-3 moved to be same as .heading-2 above */

 .p {
  font-size: var(--text-regular-normal-font-size);
  line-height: var(--text-regular-normal-line-height);
  position: relative;
  align-self: stretch;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: var(--color-schemes-color-scheme-1-text);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  font-style: var(--text-regular-normal-font-style);
}

 .action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

 .placeholder-image-2 {
  /* Display as a portrait image occupying half the screen height */
  flex: 0 0 auto;
  align-self: center;
  height: 70vh;           /* +40% taller than previous (50vh -> 70vh) */
  width: auto;            /* width derives from aspect ratio */
  max-width: 90vw;        /* safety cap for very tall screens */
  aspect-ratio: 3 / 4;    /* taller than wide (portrait) */
  position: relative;
  object-fit: cover;      /* crop to fill portrait frame */
  display: block;
}

 .solar-power {
  position: relative;
  width: 80px;
  height: 80px;
}

 .div-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

 .placeholder-image-3 {
  position: relative;
  align-self: stretch;
  width: 100%;
  aspect-ratio: 1.73;
  object-fit: cover;
}

 .tagline-wrapper-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

 .row-2 {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

 .placeholder-image-4 {
  width: 80px;
  height: 80px;
  aspect-ratio: 1;
  position: relative;
  object-fit: cover;
}

 .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

 .name {
  position: relative;
  align-self: stretch;
  margin-top: -2.00px;
  font-family: var(--text-medium-normal-font-family);
  font-weight: 700;
  color: var(--color-schemes-color-scheme-1-text);
  font-size: var(--text-medium-normal-font-size);
  text-align: center;
  letter-spacing: var(--text-medium-normal-letter-spacing);
  line-height: var(--text-medium-normal-line-height);
  font-style: var(--text-medium-normal-font-style);
}

/* Headings default to Sora to match project2 */
h1, h2, h3, .heading, .medium-length-hero {
  font-family: Sora, Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
}

/* Ensure hero text is white */
.hero-text, .hero-text .heading, .hero-text .text-wrapper-2 {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

/* Consistent flag icon sizing (match SVG 19x13 with rounded corners) */
.flag-icon {
  width: 19px;
  height: 13px;
  display: inline-block;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
}

 .social-icons {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  flex: 0 0 auto;
}

/* Center social icons under team member text */
.team .social-icons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}
.team .social-icons a,
.team .social-icons img {
  cursor: pointer;
}

 .content-5 {
  flex-direction: column;
  max-width: var(--spacing-sizing-max-width-max-width-large);
  align-items: center;
  gap: 24px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.content-6 {
  flex-direction: column;
  width: 768px;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

 .actions-4 {
  display: flex;
  flex-direction: column;
  width: 155px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.site-footer {
    background-color: #518036; /* same as navbar */
    color: white;
    padding: 50px 20px;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-column {
    flex: 1 1 200px; /* responsive columns */
}

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #FF6600; /* highlight on hover */
}

.footer-column p {
    margin: 0.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
}

.footer-social a {
    color: white;
    margin-right: 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #FF6600;
}


 .container-4 {
  flex-direction: column;
  max-width: var(--spacing-sizing-container-container-large);
  align-items: flex-start;
  gap: 80px;
  display: flex;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

 .content-7 {
  align-items: center;
  gap: 32px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

 .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

 .logo-wide-wrapper {
  position: relative;
  width: 84px;
  height: 36px;
}

 .links {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex: 0 0 auto;
}

 .text-wrapper-3 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--text-small-semi-bold-font-family);
  font-weight: var(--text-small-semi-bold-font-weight);
  color: var(--color-schemes-color-scheme-1-text);
  font-size: var(--text-small-semi-bold-font-size);
  letter-spacing: var(--text-small-semi-bold-letter-spacing);
  line-height: var(--text-small-semi-bold-line-height);
  white-space: nowrap;
  font-style: var(--text-small-semi-bold-font-style);
}

 .social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

 .credits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

 .divider {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  margin-top: -1.00px;
  object-fit: cover;
}

 .row-3 {
  display: inline-flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

 .text-wrapper-4 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--text-small-normal-font-family);
  font-weight: var(--text-small-normal-font-weight);
  color: var(--color-schemes-color-scheme-1-text);
  font-size: var(--text-small-normal-font-size);
  letter-spacing: var(--text-small-normal-letter-spacing);
  line-height: var(--text-small-normal-line-height);
  white-space: nowrap;
  font-style: var(--text-small-normal-font-style);
}

 .text-wrapper-5 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--text-small-link-font-family);
  font-weight: var(--text-small-link-font-weight);
  color: var(--color-schemes-color-scheme-1-text);
  font-size: var(--text-small-link-font-size);
  letter-spacing: var(--text-small-link-letter-spacing);
  line-height: var(--text-small-link-line-height);
  text-decoration: underline;
  white-space: nowrap;
  font-style: var(--text-small-link-font-style);
}

/* Vision KPIs */
.section { padding: 64px 0; }
.section-header { text-align: center; width: min(740px, 92vw); margin: 0 auto 28px; }
.section-header h2.heading { margin: 0 0 8px; }  /* Uses .heading font-size for consistency */
.section-header p { color: #666; margin: 0; }

.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kpi {
  background: linear-gradient(180deg, rgba(0,209,255,.05), rgba(0,255,163,.03)), #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.kpi-value {
  font-size: clamp(28px, 4.2vw, 44px);
  letter-spacing: -.02em;
  color: #FF6600;
  font-family: Sora, Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  font-weight: 600;
  line-height: 1.1;
}
.kpi-label { color: #666; }

@media (max-width: 980px) { .kpi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .kpi-grid { grid-template-columns: 1fr; } }

/* Reveal-up animation */
.reveal-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: none;
}

/* Match project2 container width in Vision section */
.vision .container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: block;
}

/* Team section: make photos full-width with top-only rounded corners */
.team .div-3 {
  align-items: stretch;
}
.team .placeholder-image-4 {
  align-self: center;      /* allow image to be narrower than card */
  width: 100%;             /* responsive base */
  max-width: 320px;        /* cap size so it doesn't dominate */
  height: auto;            /* maintain aspect via aspect-ratio */
  aspect-ratio: 1 / 1;     /* uniform square */
  display: block;          
  margin: 0 auto;          /* center inside the card */
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* --------------------------------------------- */
/* Mobile responsive overrides                   */
/* --------------------------------------------- */
@media (max-width: 768px) {
  /* Normalize mobile text sizing */
  html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  /* Prevent any horizontal scroll on mobile */
  html, body { overflow-x: hidden; }
  /* Show same semi-transparent overlay on mobile as desktop */
  .hero-overlay { display: block; }
  /* Layout containers */
  .container-wrapper,
  .vision .container,
  .component-wrapper {
    width: 92vw;
    max-width: 92vw;
    margin: 0 auto;
  }
  .container-wrapper {
    gap: 40px;
    padding: 32px 12px;
  }
  .container-3 { gap: 32px; width: 100%; max-width: 100%; padding: 0 12px; }
  .section-title { align-items: center; text-align: center; }
  .content-2 { align-items: center; }
  /* Headings - consistent sizing on mobile (heading is 30% bigger than heading-2) */
  .heading { font-size: 26px; line-height: 1.3; }  /* 20px * 1.3 = 26px */
  .heading-2, .heading-3 { font-size: 20px; line-height: 1.3; text-align: center; }  /* Centered on mobile */
  .section-header .text-wrapper-2 { font-size: 15px; line-height: 1.5; }
  .section-title .text-wrapper-2 { font-size: 14px; line-height: 1.5; }
  .section { padding: 40px 0; }
  /* Navbar - background controlled by JS inline style */
  .navbar {
    padding: 8px 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    /* NO background here - JS controls it */
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: calc(8px + env(safe-area-inset-top, 0px));
  }
  .navbar.sticky { 
    box-shadow: 0 2px 6px rgba(0,0,0,0.3); 
  }
  .navbar.nav-open { backdrop-filter: blur(4px); }
  /* Ensure logo scales on mobile even without .logo wrapper */
  .navbar > div:first-child { display: flex; align-items: center; }
  .navbar > div:first-child img {
    max-height: 54px; height: auto; width: auto; display: block;
    /* remove forced drop-shadow */
  }
  .navbar a { color: #ffffff; }
  /* Make hamburger visible over bright backgrounds */
  .hamburger span { box-shadow: none; }
  /* Show hero photo behind transparent navbar (remove any top padding) */
  .hero { padding-top: 0 !important; }
  /* Mobile: show hamburger, hide UL until opened */
  .navbar .hamburger { display: inline-block; }
  .navbar { position: fixed; }  /* keep fixed at top on mobile too */
  .navbar ul {
    display: none;
    position: absolute;
    right: 12px;
    top: 100%;
    width: min(85vw, 320px);
    height: auto !important;  /* override desktop height: 100% */
    flex: none !important;    /* override desktop flex: 1 */
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    margin: 0;
    list-style: none;
    background: rgba(81, 128, 54, 0.95); /* green with transparency */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    z-index: 1002;
    box-sizing: border-box;
  }
  .navbar.nav-open ul { 
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    padding: calc(4rem + env(safe-area-inset-top, 0px)) 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(81, 128, 54, 0.98);
    border-radius: 0;
    border: none;
    box-sizing: border-box;
    z-index: 1003;
  }
  .navbar.nav-open li {
    width: 100%;
    text-align: center;
  }
  .navbar.nav-open a {
    justify-content: center;
    padding: 18px 0;
    font-size: 18px;
  }
  .navbar.nav-open .lang-flags {
    width: 100%;
    justify-content: center;
    padding: 18px 0;
    gap: 16px;
  }
  .navbar li {
    flex: none !important;   /* override desktop flex: 1 */
    width: 100%;
    display: block;
    text-align: left;
  }
  .navbar a {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    width: 100%;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .navbar a:hover {
    background: rgba(255,255,255,0.15);
  }
  .navbar .lang-flags {
    flex: none !important;
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 12px 14px;
    width: 100%;
    justify-content: flex-start;
  }
  .navbar .lang-flags a {
    display: inline-block;
    padding: 4px;
    width: auto;
  }

  /* Hero */
  .hero { height: 100vh; }
  .hero img { height: 100%; object-fit: cover; width: 100%; display: block; }
  .hero-text .heading { font-size: 28px; line-height: 1.2; }  /* Slightly larger for hero */
  .hero-text .text-wrapper-2 { font-size: 15px; line-height: 1.5; }

  /* About features row */
  .row,
  .row-2 {
    flex-direction: column;
    gap: 24px;
    height: auto;
  }
  .content-3 { align-items: center; gap: 32px; }
  .div-3 {
    align-items: center;
    width: 100%;
  }
  /* Feature icons smaller on phones */
  .about .row .img-3 {
    width: 56px;
    height: 56px;
  }

  /* CTA buttons */
  .actions-3 { display: flex; flex-direction: column; gap: 12px; width: 100%; align-items: stretch; }
  .button-3,
  .button-4 { gap: 6px; width: 100%; max-width: 320px; margin: 0 auto; }
  .button-3 .text-wrapper,
  .button-4 .text-wrapper { font-size: 15px; }

  /* KPI grid stack (fallback if earlier media rules miss) */
  .kpi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Product section placeholder image (portrait) */
  .placeholder-image-2 {
    height: 45vh;
    max-width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    margin: 12px auto 0;
  }
  /* Product titles and text - uses consistent .heading-2 size from above */
  .p { font-size: 15px; line-height: 1.5; text-align: center; }
  /* Stack product content and image and center all elements */
  .component { flex-direction: column; align-items: center; gap: 24px; }
  /* Ensure the whole products block is centered within its wrapper */
  .products .container-wrapper,
  .products .component-wrapper,
  .products .component { width: 100%; max-width: 92vw; margin: 0 auto; box-sizing: border-box; align-items: center; }
  .products .list { align-items: center; width: 100%; padding: 0; }
  .products .list-item { flex-direction: column; align-items: center; justify-content: center; width: 100%; gap: 16px; }
  .products .img-3 { display: block; margin: 0 auto; }
  .products .content-4 { align-items: center; text-align: center; }
  .products .action { align-items: center; }

  /* Team cards and photos */
  .team .placeholder-image-4 {
    max-width: 90vw;
    width: 100%;
  }
  .name {
    font-size: clamp(16px, 4.2vw, 18px);
  }
  .text {
    font-size: 14px;
  }
}

/* Shadow when scrolled - background controlled by JS */
.navbar.sticky { 
  box-shadow: 0 2px 6px rgba(0,0,0,0.3); 
}
body.scrolled .navbar { 
  box-shadow: 0 2px 6px rgba(0,0,0,0.3); 
}