@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
  --dark: #222;
  --gray: #808080;
  --purple: #7D3E92;
  --yellow: #F1CE3B;
}

/* ----- Core Styles - Desktop unchanged ----- */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  background: #fff;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ================= HEADER/NAV ================= */
/* ========= DESKTOP NAVBAR ========= */
header {
  background: #fff;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 0 0;  /* No vertical padding, only space on ends */
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  box-sizing: border-box;
  z-index: 20;
  min-height: 160px; /* Forces header to be as tall as logo, no extra space */
}

.logo {
  margin-left: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 160px;   /* Your specified "big" logo */
  width: auto;
  display: block;
  margin-left: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  line-height: 160px; /* Vertically center links to logo in nav */
  display: inline-block;
  padding: 0; /* No vertical padding—tight to logo */
  transition: color 0.15s;
  background: none;
}

/* Active/hover underline effect */
.nav-links a.active,
.nav-links a:hover {
  color: var(--purple);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  margin: 0 auto;
  background: var(--purple);
  border-radius: 2px;
  margin-top: 2px;
}

/* Hamburger (hidden by default, shown on mobile/tablet) */
.nav-toggle {
  display: none;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: auto;
  margin-right: 28px;
  color: var(--dark);
  background: none;
  border: none;
}

/* ================= TABLET BREAKPOINT =============== */
@media (max-width: 900px) {
  header {
    min-height: 68px;           /* Shrink nav bar for tablet */
    padding: 0 5vw 0 0;
    position: fixed;
    z-index: 999;
  }
  .logo img {
    height: 60px;              /* Shrink logo for tablet */
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 74vw;
    max-width: 320px;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 8px 18px rgba(60,40,80,0.10);
    padding: 24px 0 10px 0;
    z-index: 1001;
    font-size: 1rem;
    gap: 18px;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    font-size: 17px;
    line-height: 1.4;
    padding: 8px 0;
    display: block;
  }
  .nav-toggle {
    display: block;
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 1002;
    font-size: 2.1rem;
  }
}

/* ================ MOBILE BREAKPOINT ================ */
@media (max-width: 600px) {
  header {
    min-height: 42px; 
    padding: 0 2.5vw 0 0 !important;
  }
  .logo img {
    height: 32px;
  }
  .nav-links {
    width: 94vw;
    right: 0;
    max-width: 98vw;
    border-radius: 0 0 8px 8px;
    font-size: 0.98rem;
    padding-top: 12px;
    gap: 11px;
  }
  .nav-links a {
    font-size: 16px;
    line-height: 1.2;
    padding: 7px 0;
  }
  .nav-toggle {
    top: 7px;
    right: 9px;
    font-size: 1.7rem;
  }
}

/* OPTIONAL: Slight tweak to ensure nav links fit perfectly alongside logo at all widths */
@media (min-width: 901px) {
  .nav-links a {
    line-height: 160px;
  }
}
@media (max-width: 900px) and (min-width: 601px) {
  .nav-links a {
    line-height: 60px;
  }
}

/* ================== HERO ================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.73) 45%, rgba(0,0,0,0.15) 90%);
  z-index: 2;
}
.hero-title {
  position: absolute;
  left: 60px;
  bottom: 57px;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1px;
  z-index: 3;
}
.hero-btn {
  position: absolute;
  right: 60px;
  bottom: 57px;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.08rem;
  padding: 0.4rem 1.2rem;
  border: none;
  border-radius: 7px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s;
  z-index: 3;
  letter-spacing: 1px;
}
.hero-btn:hover { background: #ffe574; }

/* ---------- HERO RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-title,
  .hero-btn {
    left: 4vw !important;
    right: 4vw !important;
    font-size: 1.3rem !important;
    max-width: 92vw;
  }
  .hero-btn {
    bottom: 29px !important;
    padding: 0.6rem 1.4rem !important;
    font-size: 0.97rem !important;
  }
  .hero-title {
    bottom: 78px !important;
    font-size: 1.29rem !important;
  }
}
@media (max-width: 600px) {
  .hero-title {
    left: 6vw !important;
    bottom: 78px !important;
    font-size: 1.05rem !important;
    max-width: 88vw;
  }
  .hero-btn {
    right: 6vw !important;
    bottom: 28px !important;
    font-size: 0.8rem !important;
    padding: 0.4rem 0.8rem !important;
  }
}

/* ========== GALLERY ========== */
.gallery {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.gallery img {
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
/* Gallery Responsive */
@media (max-width:900px) {
  .gallery {
    flex-direction: column;
    gap: 22px;
    align-items: center;
    margin: 0 auto;
  }
  .gallery img {
    max-width: 85vw;
    margin: 0 auto;
  }
}
@media (max-width:600px) {
  .gallery img {
    max-width: 97vw;
  }
}

/* ================= SUSTAINABILITY SECTION ================ */
/* ...Keep most original structure... */
.sustainability-section {
  background: #fff;
  padding: 40px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  color: #353535;
}
.sustainability-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
  padding-left: 10px;
}
.sustainability-text-block {
  max-width: 680px;
  position: relative;
}
.sustainability-title {
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.1;
  position: relative;
  margin: 0 0 18px 0;
  padding-left: 42px;
  color: black;
  font-family: 'Bebas Neue', cursive, 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 15px;
}
.title-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 1;
}
.sustainability-title .yellow-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #F1CE3B;
  opacity: 0.95;
  border-radius: 6px;
  z-index: 0;
}
.sustainability-subtitle {
  font-weight: 600;
  font-size: 1.2rem;
  max-width: 670px;
  line-height: 1.4;
  margin: 0;
  color: #353535;
}
.image-placeholder {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  background: #f0f0f0 url('https://via.placeholder.com/220?text=Image') no-repeat center center;
  background-size: contain;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.sustainability-title img.olive-branches-inline {
  height: 360px;
  width: 360px;
  display: inline-block;
  margin-left: -30px;
  user-select: none;
  pointer-events: none;
}
.sustainability-content {
  display: flex;
  gap: 56px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 10px;
}
.sustainability-col {
  flex: 1 1 360px;
  max-width: 520px;
  min-width: 280px;
  text-align: left;
  margin-left: 60px;
}
.sustainability-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #7d3e92;
  margin-bottom: 18px;
  line-height: 1.2;
}
.sustainability-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4f4f4f;
}
/* Go Green Logo alignment */
.go-green-logo {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}
.go-green-logo img {
  max-width: 500px;
  height: auto;
  display: block;
}

/* SUSTAINABILITY RESPONSIVE */
@media (max-width: 900px) {
  .sustainability-intro {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding-left: 6vw !important;
    padding-right: 6vw !important;
  }
  .image-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  .sustainability-content {
    flex-direction: column;
    gap: 32px;
    padding: 32px 4vw 32px 4vw;
    align-items: flex-start;
  }
  .sustainability-col {
    max-width: 100%;
    min-width: 0;
    margin: 0 0 24px 0;
    padding: 0;
  }
  .go-green-logo img {
    max-width: 75vw;
  }
}
@media (max-width: 600px) {
  .sustainability-title { font-size: 2.2rem; padding-left: 22px !important;}
  .sustainability-subtitle { font-size: 1rem;}
  .sustainability-col-title { font-size: 1.13rem;}
  .sustainability-text { font-size: 1rem;}
  .sustainability-content { padding: 8px 2vw 8px 2vw;}
  .go-green-logo img { max-width: 93vw; }
}


/* ============= SERVICES SECTION ============= */
.services-section {
  background: #fff;
  padding: 40px 0 56px 0;
}
.services-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #343333;
  margin: 0 0 30px 34px;
  letter-spacing: -1px;
  text-align: left;
}
.services-cards {
  display: flex;
  gap: 44px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  max-width: 340px;
  flex: 1 1 260px;
  box-shadow: 0 2px 12px rgba(40,40,60,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}
.service-img {
  position: relative;
  width: 100%;
  height: 170px;
  background: #f7f7f7;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.service-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.service-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 8px 18px;
  border-radius: 17px;
  color: #fff;
  letter-spacing: 1px;
  box-shadow: 0 2px 7px rgba(0,0,0,0.13);
}
.badge-yellow { background: #F1CE3B; color: #343333; }
.badge-green  { background: #7bbb41; }
.badge-purple { background: #8c2ca8; }
.service-desc {
  padding: 24px 22px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-desc p {
  margin: 0 0 12px 0;
  font-size: 1.04rem;
  color: #343333;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.57;
}
.service-link {
  color: #7D3E92;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: color 0.19s;
}
.service-link:hover {
  color: #519c3f;
}
@media (max-width:900px) {
  .services-title { font-size: 1.34rem; margin-left: 14px; }
  .services-cards { gap: 20px; }
  .service-img { height: 33vw; min-height: 110px;}
  .service-card { max-width: 98vw; }
}
@media (max-width:600px) {
  .services-cards {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .service-card {
    width: 97vw;
    max-width: 99vw;
    margin: 0 auto 12px auto;
  }
  .service-desc { padding: 14px 4vw;}
  .service-img { height: 38vw; min-height: 92px;}
  .services-title { font-size: 1.09rem; }
}

/* ============= CONTACT SECTION ============= */
.contact-section {
  width: 100vw;
  background: #f;
  padding: 64px 0 64px 0;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.contact-container {
  display: flex;
  max-width: 980px;
  width: 96vw;
  border-radius: 30px;
  overflow: hidden;
  box-sizing: border-box;
  background: #f1f1ee;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 4px 12px;
}
.contact-form-box {
  background: #e7e7e4;
  border-radius: 24px 0 0 24px;
  padding: 40px 40px 40px 40px;
  width: 55%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 20px 0;
  color: #111;
}
.contact-blurb {
  font-family: 'Montserrat', sans-serif;
  color: #555;
  font-size: 1rem;
  margin: 0 0 30px 0;
}
.styled-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.form-row input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  box-sizing: border-box;
}
.styled-contact-form textarea {
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  resize: vertical;
  min-height: 100px;
  background: #fff;
  box-sizing: border-box;
}
.styled-contact-form button {
  margin-top: 10px;
  padding: 14px 40px;
  background: #252525;
  color:  #f1ce3b;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.22s;
  align-self: flex-start;
}
.styled-contact-form button:hover { background: #5a1f91; }
.contact-image-box {
  border-radius: 0 24px 24px 0;
  overflow: hidden;
  width: 45%;
  min-width: 300px;
  max-width: 440px;
  position: relative;
  box-sizing: border-box;
}
.contact-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    max-width: 96vw;
    border-radius: 24px;
  }
  .contact-form-box {
    width: 100%;
    border-radius: 24px 24px 0 0;
    min-width: unset;
    padding: 32px 18px;
  }
  .contact-image-box {
    width: 100%;
    max-height: 210px;
    border-radius: 0 0 24px 24px;
  }
  .contact-image-box img {
    min-width: unset;
    min-height: unset;
    object-position: center center;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 40px 0 40px 0;
  }
  .contact-form-box {
    padding: 24px 10px;
  }
  .contact-title {
    font-size: 1.15rem;
  }
  .contact-blurb {
    font-size: 0.93rem;
  }
  .form-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
  }
  .styled-contact-form button {
    padding: 12px 18px;
    font-size: 0.97rem;
  }
}

/* =================== FOOTER =================== */
footer {
  background: #fff;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  padding: 24px 12px 12px;
  margin-top: 0; /* Remove margin to prevent extra white space */
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; /* center everything vertically */
  gap: 18px; /* slightly tighter gap */
}
.footer-logo {
  flex: 1;
  min-width: 180px;
  text-align: left;
  display: flex;
  align-items: center; /* vertically center logo image */
  /* Remove margin-bottom (handled by gap) */
}
.footer-logo img {
  height: 80px;         /* Make logo a bit smaller for better alignment */
  margin-bottom: 0;     /* Remove extra space below logo */
  vertical-align: middle;
}
.footer-addresses {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-width: 220px;
  gap: 12px;
}
.footer-address {
  min-width: 120px;
  margin-bottom: 4px;
}
.footer-address p {
  margin: 2px 0;
  font-size: 13px;
  line-height: 1.32;
}
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.footer-socials a {
  width: 30px;
  height: 30px;
  font-size: 15px;
}
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #000;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #ececec;
  background: #fff;
}
.footer-bottom a {
  margin: 0 8px;
  font-size: 12px;
}
footer p { margin-top: 0; margin-bottom: 0; }

/* Responsive adjustments */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-addresses {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .footer-logo {
    min-width: 120px;
    text-align: left;
    margin-bottom: 12px;
    display: block; /* remove flex for stacked layout */
  }
  .footer-logo img { height: 60px; }
}

/* Ultra narrow screens */
@media (max-width:600px) {
  .footer-container {
    padding: 0 4vw;
    gap: 5px;
  }
  .footer-logo img { height: 36px; }
  .footer-bottom { font-size: 11px; }
  .footer-addresses, .footer-address {
    min-width: unset;
    font-size: 11.3px;
  }
}

/* ========== Top Banner & Others ========== */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 40px;
  background-color: #1a1a1a;
  color: #f1ce3b;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #f1ce3b;
  padding-right: 40px;
}
.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%);}
}
.close-banner {
  position: absolute;
  right: 10px;
  top: 8px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
}
body { padding-top: 40px; }

.social-embed {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}
.sustainability-intro {
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 60px;
  margin-top: 40px;
  margin-left: 60px;
  min-height: 250px;
}

.sustainability-text-block {
  flex: 1 1 360px;
  min-width: 240px;
}

.sustainability-title {
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Bebas Neue', cursive, 'Montserrat', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  padding-left: 42px;
  background: none;
  margin: 0 0 18px 0;
  line-height: 1.08;
}

.sustainability-title .yellow-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 100%;
  border-radius: 8px;
  background: #F1CE3B;
  z-index: 0;
  opacity: 0.97;
}
.title-text-block {
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.sustainability-title .black-text {
  color: #111;
  font-weight: 900;
  letter-spacing: 4px;
}

.sustainability-title .outline-text {
  color: transparent;
  -webkit-text-stroke: 0.5px #7d3e92;
  text-stroke: 0.5px #7d3e92;
  font-weight: 700;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 4px;
}

.kk-emblem-container {
 margin-left: 0;
  display: flex;
  align-items: center;
}

.kk-emblem {
  height: 90px;
  width: auto;
  max-width: 30vw;
}

.olive-branches-inline {
  position: absolute;
  right: -110px;
  bottom: -32px;
  height: 240px;
  width: auto;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 900px) {
  .sustainability-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-height: unset;
  }
  .kk-emblem {
    height: 64px;
    width: auto;
    max-width: 48vw;
  }
  .olive-branches-inline {
    display: none; /* Or set height: 48px if you wish to show on tablet */
  }
  .sustainability-title {
    font-size: 2.3rem;
    padding-left: 20px;
  }
}

@media (max-width: 600px) {
  .sustainability-title {
    font-size: 1.33rem;
    padding-left: 14px;
  }
  .kk-emblem, .kk-emblem-container {
    height: 60px;
    width: 60px;
    max-width: 45vw;
  }
}
.sustainability-section {
  background: #fff;
  padding: 40px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  color: #353535;
}

/* ------------ DESKTOP: Side-by-side ------------ */
.sustainability-intro {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  gap: 36px;
  margin-bottom: 60px;
  min-height: 210px;
  margin-top: 40px;
  margin-left: 60px;
}

.sustainability-text-block {
  max-width: 680px;
  min-width: 200px;
  position: relative;
  flex: 2 1 340px;
}

.sustainability-title {
  display: flex;
  align-items: center;
  position: relative;
  gap: 15px;
  font-family: 'Bebas Neue', cursive, 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  padding-left: 42px;
  margin: 0 0 18px 0;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: none;
}

.sustainability-title .yellow-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #F1CE3B;
  border-radius: 6px;
  opacity: 0.95;
  z-index: 0;
}

.title-text-block {
  display: flex;
  flex-direction: column;
  z-index: 1;
  line-height: 1.1;
}

.sustainability-title .black-text {
  color: #111;
  font-weight: 900;
  letter-spacing: 4px;
}

.sustainability-title .outline-text {
  color: transparent;
  -webkit-text-stroke: 0.5px #7d3e92;
  text-stroke: 0.5px #7d3e92;
  font-weight: 700;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 4px;
}

.kk-emblem-container {
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kk-emblem {
  height: 90px;
  width: auto;
  max-width: 28vw;
}

.olive-branches-inline {
  position: absolute;
  right: -110px;
  bottom: -32px;
  height: 200px;
  width: auto;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

/* Subtitle below heading */
.sustainability-subtitle {
  font-weight: 600;
  font-size: 1.2rem;
  max-width: 670px;
  line-height: 1.4;
  margin: 0;
  color: #353535;
}

/* ------------ Main columns ------------ */
.sustainability-content {
  display: flex;
  gap: 56px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 10px;
}

.sustainability-col {
  flex: 1 1 360px;
  max-width: 520px;
  min-width: 220px;
  text-align: left;
}
.sustainability-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #7d3e92;
  margin-bottom: 18px;
  line-height: 1.2;
}
.sustainability-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4f4f4f;
}
.go-green-logo {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}
.go-green-logo img {
  max-width: 500px;
  height: auto;
  display: block;
}

/* ------------ TABLET (<900px): Stack ------------ */
@media (max-width: 900px) {
  .sustainability-section {
    padding: 30px 4vw 40px 4vw;
    max-width: 98vw;
  }
  .sustainability-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 20px;
    margin-left: 0;
    min-height: unset;
  }
  .kk-emblem-container {
    margin-left: 0;
    margin-top: 8px;
    margin-bottom: 0;
  }
  .kk-emblem {
    height: 58px;
    width: auto;
    max-width: 35vw;
  }
  .olive-branches-inline {
    display: none;
  }
  .sustainability-title {
    font-size: 2.3rem;
    padding-left: 16px;
  }
  .sustainability-content {
    flex-direction: column;
    gap: 32px;
    padding: 28px 0 0 0;
    align-items: flex-start;
  }
  .sustainability-col {
    max-width: 100%;
    min-width: 0;
    margin: 0 0 21px 0;
    padding: 0;
  }
  .go-green-logo img {
    max-width: 80vw;
  }
}

/* ------------ MOBILE (<600px): Full stack ------------ */
@media (max-width: 600px) {
  .sustainability-section {
    padding: 10px 2vw 22px 2vw;
  }
  .sustainability-intro {
    gap: 7px;
    margin-bottom: 8px;
    margin-left: 0;
    margin-top: 8px;
  }
  .sustainability-title {
    font-size: 1.25rem;
    padding-left: 7px;
    margin-bottom: 8px;
  }
  .sustainability-title .yellow-bar {
    width: 13px;
    border-radius: 3px;
  }
  .kk-emblem {
    height: 36px;
    width: auto;
    max-width: 30vw;
  }
  .sustainability-subtitle {
    font-size: 0.9rem;
    max-width: 98vw;
  }
  .sustainability-content {
    gap: 19px;
    padding: 8px 0 0 8px;
    align-items: flex-start;
  }
  .sustainability-col {
    padding: 0;
    margin: -15px 0 13px 0;
    min-width: 0;
  }
  .sustainability-col-title {
    font-size: 1.07rem;
  }
  .sustainability-text {
    font-size: 0.97rem;
  }
  .go-green-logo img {
    max-width: 97vw;
  }
}
.instagram-section {
  text-align: center;
  padding: 56px 0 40px 0;
  background: #fff;
}

.instagram-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color:  #7D3E92;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.instagram-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
  width: 100%;
}

.instagram-image {
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(80,40,80,0.06);
  max-width: 430px;          /* Control image width on desktop */
  width: 100%;               /* Responsive scaling */
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1.5px solid #ececec;
  background: #fff;
}

/* Decorative bar if used as in your original: */
.decor-wrapper-outer {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.decor-wrapper .yellow-bar {
  width: 110px;
  height: 7px;
  border-radius: 3px;
  background: #F1CE3B;
  opacity: 0.92;
  margin: 0 auto;
}

/* ---------- Tablet ---------- */
@media (max-width:900px) {
  .instagram-section {
    padding: 36px 0 32px 0;
  }
  .instagram-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  .instagram-container {
    margin-bottom: 13px;
  }
  .instagram-image {
    max-width: 320px;
    border-radius: 12px;
  }
  .decor-wrapper .yellow-bar {
    width: 58px;
    height: 6px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width:600px) {
  .instagram-section {
    padding: 22px 0 20px 0;
  }
  .instagram-title {
    font-size: 1.07rem;
    margin-bottom: 11px;
  }
  .instagram-image {
    max-width: 95vw;
    border-radius: 8px;
  }
  .decor-wrapper .yellow-bar {
    width: 33vw;
    max-width: 80px;
    height: 5px;
  }
}
.instagram-section {
  text-align: center;
  padding: 4rem 1rem;
}

.instagram-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.instagram-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.instagram-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.video-link {
  display: inline-block;
  max-width: 200px;
}

.side-video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.decor-wrapper-outer {
  margin-top: 2rem;
}

.decor-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yellow-bar {
  width: 200px;
  height: 6px;
  background-color: #FFD700;
  border-radius: 3px;
}

/* đź”˝ Mobile Layout: Stack items vertically */
@media (max-width: 768px) {
  .instagram-container {
    flex-direction: column;
  }

  .video-link {
    max-width: 80%;
  }

  .instagram-image {
    max-width: 90%;
  }
}
.instagram-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* allows stacking on smaller screens */
}

.instagram-image,
.side-video {
  max-width: 100%;
  width: 300px;
  height: auto;
  transition: transform 0.3s ease;
}

.side-video {
  cursor: pointer;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .instagram-container {
    flex-direction: column;
    gap: 10px;
  }

  .instagram-image,
  .side-video {
    width: 90%; /* fill screen nicely */
    max-width: 400px;
  }
}
.instagram-section {
  text-align: center;
  padding: 50px 20px;
}

.instagram-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4b2a76; /* Adjust as needed */
  margin-bottom: 40px;
}

.instagram-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.main-media {
  max-width: 100%;
  width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.side-media {
  max-width: 100%;
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive stacking on mobile */
@media (max-width: 768px) {
  .instagram-container {
    flex-direction: column;
    gap: 20px;
  }

  .main-media,
  .side-media {
    width: 90%;
  }
}

