:root {
  /* Business-specific additional properties */
  --business-card-enhanced: rgba(140, 163, 64, 0.05);
  --business-card-border-enhanced: rgba(140, 163, 64, 0.15);
  --business-glass-enhanced: rgba(255, 255, 255, 0.08);
  --expanded-card-height: 420px;
  --expanded-transition-duration: 360ms;
  --expanded-easing: cubic-bezier(.2,.8,.2,1);
  
  /* Colors */
  --primary-green: #7B8950;
  --primary-yellow: #FCB117;
  --primary-yellow-dark: #E6AA28;
  --white: #FFFFFF;
  --black: #101014;
  --text-muted: rgba(255, 255, 255, 0.6);
}

body {
  font-family: 'Mulish', sans-serif;
  background-color: #191916;
  overflow-x: hidden;
}

/* ========================================= */
/* HERO SECTION - THREE BREAKPOINTS */
/* ========================================= */

.hero-section {
  width: 100%;
  height: 800px;
  background: #191916;
  position: relative;
  display: flex;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.hero-bg-frame {
  position: absolute;
  width: 1130px;
  height: 650px;
  left: calc(50% - 1100px/2 + 0.5px);
  top: 84px;
  border-radius: 24px;
}

.grid-frame {
  position: absolute;
  width: 490px;
  height: 490px;
  left: calc(50% - 490px/2 + 400px);
  top: calc(50% - 490px/2 - 200px);
}

.grid-line {
  position: absolute;
  width: 490px;
  height: 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.line-78 {
  left: 120px;
  top: 0px;
  transform: rotate(90deg);
}

.line-79 {
  left: 240px;
  top: 0px;
  transform: rotate(90deg);
}

.line-80 {
  left: 360px;
  top: 0px;
  transform: rotate(90deg);
}

.line-89 {
  left: 0px;
  top: 120px;
}

.line-90 {
  left: 0px;
  top: 240px;
}

.line-91 {
  left: 0px;
  top: 360px;
}

.ellipse-2984 {
  position: absolute;
  width: 182px;
  height: 182px;
  left: calc(50% - 182px/2 - 150px);
  top: 111px;
  background: #8CA340;
  filter: blur(135px);
}

.ellipse-2985 {
  position: absolute;
  width: 182px;
  height: 182px;
  left: calc(50% - 182px/2 - 800px);
  top: 595px;
  background: #8CA340;
  filter: blur(135px);
}

.content-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 40px;
  gap: 10px;
  position: absolute;
  width: 1000px;
  height: 240px;
  left: calc(50% - 1000px/2 + 0.5px);
  top: 450px;
  background: linear-gradient(135deg, 
    rgba(88, 102, 47, 0.08) 0%, 
    rgba(200, 200, 200, 0.06) 50%, 
    rgba(88, 102, 47, 0.08) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 12px;
  width: 900px;
  height: 180px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.title {
  width: 900px;
  height: 96px;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 96px;
  text-align: center;
  color: #FCB117;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.subtitle-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 900px;
  height: 72px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.subtitle {
  width: 900px;
  height: 72px;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

/* HERO BREAKPOINT 1: Tablet (1024px and below) */
@media (max-width: 1024px) {
  .hero-section {
    height: 700px;
  }
  
  .hero-bg-frame {
    width: 90%;
    height: 500px;
    left: 5%;
    top: 50px;
  }
  
  .grid-frame {
    width: 300px;
    height: 300px;
    left: calc(50% - 150px + 150px);
    top: calc(50% - 150px - 120px);
  }
  
  .grid-line {
    width: 300px;
  }
  
  .line-78 { left: 70px; }
  .line-79 { left: 140px; }
  .line-80 { left: 210px; }
  .line-89 { top: 70px; }
  .line-90 { top: 140px; }
  .line-91 { top: 210px; }
  
  .ellipse-2984,
  .ellipse-2985 {
    width: 120px;
    height: 120px;
  }
  
  .ellipse-2984 {
    left: calc(50% - 60px - 80px);
    top: 80px;
  }
  
  .ellipse-2985 {
    left: calc(50% - 60px - 400px);
    top: 400px;
  }
  
  .content-frame {
    width: 90%;
    height: auto;
    left: 5%;
    top: 320px;
    padding: 30px 24px;
  }
  
  .text-container {
    width: 100%;
    height: auto;
  }
  
  .title {
    width: 100%;
    font-size: 48px;
    line-height: 60px;
    height: auto;
  }
  
  .subtitle-container {
    width: 100%;
    height: auto;
  }
  
  .subtitle {
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    height: auto;
  }
}

/* HERO BREAKPOINT 2: Tablet (768px and below) */
@media (max-width: 768px) {
  .hero-section {
    height: 600px;
  }
  
  .hero-bg-frame {
    height: 350px;
    top: 30px;
  }
  
  .grid-frame {
    display: none;
  }
  
  .ellipse-2984,
  .ellipse-2985 {
    width: 100px;
    height: 100px;
  }
  
  .ellipse-2984 {
    left: calc(50% - 50px - 50px);
    top: 60px;
  }
  
  .ellipse-2985 {
    left: calc(50% - 50px - 200px);
    top: 350px;
  }
  
  .content-frame {
    top: 250px;
    padding: 25px 20px;
  }
  
  .title {
    font-size: 36px;
    line-height: 48px;
  }
  
  .subtitle {
    font-size: 18px;
    line-height: 28px;
  }
}

/* HERO BREAKPOINT 3: Mobile (480px and below) */
@media (max-width: 480px) {
  .hero-section {
    height: 500px;
  }
  
  .hero-bg-frame {
    height: 250px;
    top: 20px;
  }
  
  .ellipse-2984,
  .ellipse-2985 {
    display: none;
  }
  
  .content-frame {
    top: 180px;
    padding: 20px 16px;
  }
  
  .title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ========================================= */
/* VISION & MISSION SECTION - THREE BREAKPOINTS */
/* ========================================= */

.vision-mission-section {
  width: 1281px;
  height: 600px;
  position: relative;
  margin: 100px auto;
  padding: 80px 0;
  flex: none;
  order: 1;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-mission-image {
  position: absolute;
  width: 225px;
  height: 512px;
  left: calc(50% - 225px/2);
  top: 50px;
  border: 5px solid #808C4A;
  border-radius: 100px;
}

.vision-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 12px;
  position: absolute;
  width: 449px;
  height: 222px;
  left: 0px;
  top: 84px;
}

.vision-title {
  width: 449px;
  height: 60px;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #7B8950;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.vision-description {
  width: 449px;
  height: 150px;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 10px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.mission-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 12px;
  position: absolute;
  width: 449px;
  height: 222px;
  left: 832px;
  top: 306px;
}

.mission-title {
  width: 449px;
  height: 60px;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #7B8950;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.mission-description {
  width: 449px;
  height: 150px;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  padding-right: 30px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* VISION & MISSION BREAKPOINT 1: Tablet (1024px and below) */
@media (max-width: 1024px) {
  .vision-mission-section {
    width: 90%;
    height: auto;
    padding: 100px 0;
    margin: 80px auto;
    flex-direction: column;
    gap: 60px;
  }

  .vision-mission-image {
    position: relative;
    width: 200px;
    height: 450px;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
    order: 2;
  }

  .vision-container,
  .mission-container {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    margin: 0;
  }

  .vision-container { order: 1; }
  .mission-container { order: 3; }

  .vision-title,
  .mission-title {
    width: 100%;
    height: auto;
    font-size: 36px;
    line-height: 48px;
  }

  .vision-description,
  .mission-description {
    width: 100%;
    height: auto;
    font-size: 18px;
    line-height: 27px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* VISION & MISSION BREAKPOINT 2: Tablet (768px and below) */
@media (max-width: 768px) {
  .vision-mission-section {
    padding: 80px 0;
    margin: 60px auto;
    gap: 50px;
  }

  .vision-mission-image {
    width: 180px;
    height: 400px;
  }

  .vision-title,
  .mission-title {
    font-size: 32px;
    line-height: 42px;
  }

  .vision-description,
  .mission-description {
    font-size: 16px;
    line-height: 24px;
  }
}

/* VISION & MISSION BREAKPOINT 3: Mobile (480px and below) */
@media (max-width: 480px) {
  .vision-mission-section {
    padding: 60px 0;
    margin: 40px auto;
    gap: 40px;
  }

  .vision-mission-image {
    width: 140px;
    height: 320px;
    border-radius: 80px;
  }

  .vision-title,
  .mission-title {
    font-size: 28px;
    line-height: 36px;
  }

  .vision-description,
  .mission-description {
    font-size: 14px;
    line-height: 21px;
  }
}

/* ========================================= */
/* VALUES SECTION - THREE BREAKPOINTS */
/* ========================================= */

.values-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px;
  gap: 70px;
  position: relative;
  width: 100%;
  min-height: 485px;
  background: transparent;
}

.values-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 70px;
  width: 100%;
  max-width: 1279px;
  margin: 0 auto;
}

.values-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  height: auto;
}

.values-title {
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #7B8950;
  margin: 0;
}

.values-subtitle {
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.values-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  width: 100%;
  max-width: 1250px;
  height: 286px;
  gap: 0;
  justify-content: center;
}

.values-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 16px;
  gap: 10px;
  width: 310px;
  height: 320px;
  margin: auto;
  flex: none;
}

.values-card--sustainability {
  border-radius: 24px 0px 0px 24px;
  background: rgba(123, 137, 80, 0.2);
}

.values-card--innovation {
  background: rgba(123, 137, 80, 0.24);
}

.values-card--empowerment {
  background: rgba(123, 137, 80, 0.28);
}

.values-card--quality {
  border-radius: 0px 24px 24px 0px;
  background: rgba(123, 137, 80, 0.2);
}

.values-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 109px;
  width: 293px;
  height: 229px;
}

.values-icon {
  width: 36px;
  height: 36px;
  background: #FEE5B2;
  border: 1px solid #FEE5B2;
  border-radius: 512px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.values-icon i {
  color: #FCB117;
  font-size: 16px;
}

.values-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  width: 293px;
  height: 96px;
}

.values-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 293px;
  height: 96px;
}

.values-card-title {
  width: 293px;
  height: 36px;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

.values-card-description {
  width: 293px;
  height: 72px;
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

/* VALUES BREAKPOINT 1: Large Tablet (1024px and below) */
@media (max-width: 1024px) {
  .values-section {
    padding: 80px 20px;
    gap: 60px;
  }

  .values-container {
    gap: 60px;
  }

  .values-title {
    font-size: 60px;
    line-height: 72px;
  }

  .values-subtitle {
    font-size: 17px;
  }

  .values-grid {
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    gap: 0;
  }

  .values-card {
    width: 50%;
    height: 286px;
    border-radius: 0 !important;
  }

  .values-card--sustainability { border-radius: 24px 0 0 0 !important; }
  .values-card--innovation { border-radius: 0 24px 0 0 !important; }
  .values-card--empowerment { border-radius: 0 0 0 24px !important; }
  .values-card--quality { border-radius: 0 0 24px 0 !important; }

  .values-card-content {
    width: 100%;
    height: auto;
    gap: 80px;
  }

  .values-text,
  .values-text-content {
    width: 100%;
    height: auto;
  }

  .values-card-title,
  .values-card-description {
    width: 100%;
    height: auto;
  }
}

/* VALUES BREAKPOINT 2: Tablet (768px and below) */
@media (max-width: 768px) {
  .values-section {
    padding: 60px 20px;
    gap: 50px;
  }

  .values-container {
    gap: 50px;
  }

  .values-title {
    font-size: 48px;
    line-height: 60px;
  }

  .values-subtitle {
    font-size: 16px;
  }

  .values-grid {
    flex-direction: column;
    height: auto;
    gap: 0;
  }

  .values-card {
    width: 100%;
    height: auto;
    min-height: 250px;
    border-radius: 0 !important;
  }

  .values-card--sustainability { border-radius: 24px 24px 0 0 !important; }
  .values-card--innovation,
  .values-card--empowerment { border-radius: 0 !important; }
  .values-card--quality { border-radius: 0 0 24px 24px !important; }

  .values-card-content {
    gap: 60px;
    height: auto;
    padding: 20px 0;
  }

  .values-card-description {
    height: auto;
    min-height: 48px;
  }
}

/* VALUES BREAKPOINT 3: Mobile (480px and below) */
@media (max-width: 480px) {
  .values-section {
    padding: 50px 15px;
    gap: 40px;
  }

  .values-container {
    gap: 40px;
  }

  .values-title {
    font-size: 36px;
    line-height: 48px;
  }

  .values-subtitle {
    font-size: 14px;
  }

  .values-card {
    padding: 24px 16px;
    min-height: 220px;
  }

  .values-card-content {
    gap: 40px;
  }

  .values-card-title {
    font-size: 20px;
    line-height: 30px;
  }

  .values-card-description {
    font-size: 14px;
    line-height: 21px;
  }

  .values-icon {
    width: 32px;
    height: 32px;
  }

  .values-icon i {
    font-size: 14px;
  }
}

/* ========================================= */
/* POLICIES SECTION */
/* ========================================= */

.policies-section {
  width: 100%;
  min-height: 706px;
  position: relative;
  margin: 100px auto;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.policies-bg-grid {
  position: absolute;
  width: 490px;
  height: 490px;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}

.policies-grid-line {
  position: absolute;
  width: 490px;
  height: 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.policies-grid-line--vertical-1 {
  left: 120px;
  top: 0px;
  transform: rotate(90deg);
}

.policies-grid-line--vertical-2 {
  left: 240px;
  top: 0px;
  transform: rotate(90deg);
}

.policies-grid-line--vertical-3 {
  left: 360px;
  top: 0px;
  transform: rotate(90deg);
}

.policies-grid-line--horizontal-1 {
  left: 0px;
  top: 120px;
}

.policies-grid-line--horizontal-2 {
  left: 0px;
  top: 240px;
}

.policies-grid-line--horizontal-3 {
  left: 0px;
  top: 360px;
}

.policies-bg-orb--left {
  position: absolute;
  width: 182px;
  height: 182px;
  left: 10%;
  top: 20%;
  background: #8CA340;
  filter: blur(135px);
  opacity: 0.3;
}

.policies-bg-orb--right {
  position: absolute;
  width: 182px;
  height: 182px;
  right: 10%;
  bottom: 20%;
  background: #8CA340;
  filter: blur(135px);
  opacity: 0.3;
}

.policies-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 70px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.policies-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.policies-title {
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #7B8950;
  margin: 0;
}

.policies-subtitle {
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.policies-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 1300px;
}

.policy-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 30px;
  flex: 1;
  min-height: 244px;
  background: #FFFFFF;
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.policy-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 48px;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}

.policy-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
}

.policy-title {
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #2E2E2F;
  margin: 0;
}

.policy-description {
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #565656;
  margin: 0;
}

.policy-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 13.5px 8px;
  gap: 10px;
  width: auto;
  height: 50px;
  border: 1.5px solid #808C4A;
  border-radius: 24px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.policy-button:hover {
  background: #808C4A;
}

.policy-button:hover .policy-button-text,
.policy-button:hover .policy-button-icon {
  color: #FFFFFF;
}

.policy-button-text {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #808C4A;
  margin: 0;
  transition: color 0.3s ease;
}

.policy-button-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #808C4A;
  transition: color 0.3s ease;
}

/* POLICIES BREAKPOINT 1: Large Tablet (1024px and below) */
@media (max-width: 1024px) {
  .policies-section {
    padding: 60px 20px;
    gap: 60px;
  }

  .policies-container {
    gap: 60px;
  }

  .policies-title {
    font-size: 60px;
    line-height: 72px;
  }

  .policies-subtitle {
    font-size: 17px;
  }

  .policies-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .policy-card {
    flex: 0 0 calc(50% - 10px);
    min-height: 280px;
  }

  .policies-bg-grid {
    display: none;
  }
}

/* POLICIES BREAKPOINT 2: Tablet (768px and below) */
@media (max-width: 768px) {
  .policies-section {
    padding: 50px 20px;
    gap: 50px;
  }

  .policies-container {
    gap: 50px;
  }

  .policies-title {
    font-size: 48px;
    line-height: 60px;
  }

  .policies-subtitle {
    font-size: 16px;
  }

  .policies-grid {
    flex-direction: column;
    gap: 20px;
  }

  .policy-card {
    flex: 0 0 100%;
    min-height: 220px;
  }

  .policy-card-content {
    gap: 32px;
  }

  .policies-bg-orb--left,
  .policies-bg-orb--right {
    display: none;
  }
}

/* POLICIES BREAKPOINT 3: Mobile (480px and below) */
@media (max-width: 480px) {
  .policies-section {
    padding: 40px 15px;
    gap: 40px;
  }

  .policies-container {
    gap: 40px;
  }

  .policies-title {
    font-size: 36px;
    line-height: 48px;
  }

  .policies-subtitle {
    font-size: 14px;
  }

  .policy-card {
    padding: 20px;
    min-height: 200px;
  }

  .policy-card-content {
    gap: 24px;
  }

  .policy-title {
    font-size: 20px;
  }

  .policy-description {
    font-size: 14px;
  }

  .policy-button {
    padding: 12px 8px;
    height: 44px;
  }

  .policy-button-text {
    font-size: 16px;
  }
}

/* ========================================= */
/* PARTNERS SECTION */
/* ========================================= */

.partners-section {
  width: 100%;
  min-height: 508px;
  position: relative;
  margin: 100px auto;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: hidden;
}

.partners-bg-grid {
  position: absolute;
  width: 490px;
  height: 490px;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}

.partners-grid-line {
  position: absolute;
  width: 490px;
  height: 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-grid-line--vertical-1 {
  left: 120px;
  top: 0px;
  transform: rotate(90deg);
}

.partners-grid-line--vertical-2 {
  left: 240px;
  top: 0px;
  transform: rotate(90deg);
}

.partners-grid-line--vertical-3 {
  left: 360px;
  top: 0px;
  transform: rotate(90deg);
}

.partners-grid-line--horizontal-1 {
  left: 0px;
  top: 120px;
}

.partners-grid-line--horizontal-2 {
  left: 0px;
  top: 240px;
}

.partners-grid-line--horizontal-3 {
  left: 0px;
  top: 360px;
}

.partners-bg-orb--left {
  position: absolute;
  width: 182px;
  height: 182px;
  left: 10%;
  top: 20%;
  background: #8CA340;
  filter: blur(135px);
  opacity: 0.3;
}

.partners-bg-orb--right {
  position: absolute;
  width: 182px;
  height: 182px;
  right: 10%;
  bottom: 20%;
  background: #8CA340;
  filter: blur(135px);
  opacity: 0.3;
}

.partners-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 70px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.partners-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.partners-title {
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #7B8950;
  margin: 0;
}

.partners-subtitle {
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.partners-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 80px;
  width: 100%;
  max-width: 934px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.partner-logo--solarwinds {
  width: 156px;
  height: 36px;
}

.partner-logo--energy {
  width: 75px;
  height: 75px;
}

.partner-logo--bank {
  width: 49px;
  height: 89px;
}

.partner-logo--fundusz {
  width: 94px;
  height: 56px;
}

.partner-logo--innovations {
  width: 81px;
  height: 81px;
}

/* PARTNERS BREAKPOINT 1: Large Tablet (1024px and below) */
@media (max-width: 1024px) {
  .partners-section {
    padding: 60px 20px;
    gap: 60px;
  }

  .partners-container {
    gap: 60px;
  }

  .partners-title {
    font-size: 60px;
    line-height: 72px;
  }

  .partners-subtitle {
    font-size: 17px;
  }

  .partners-logos {
    gap: 60px;
    max-width: 800px;
  }

  .partners-bg-grid {
    display: none;
  }
}

/* PARTNERS BREAKPOINT 2: Tablet (768px and below) */
@media (max-width: 768px) {
  .partners-section {
    padding: 50px 20px;
    gap: 50px;
  }

  .partners-container {
    gap: 50px;
  }

  .partners-title {
    font-size: 48px;
    line-height: 60px;
  }

  .partners-subtitle {
    font-size: 16px;
  }

  .partners-logos {
    gap: 40px;
    max-width: 600px;
  }

  .partner-logo--solarwinds { width: 140px; height: 32px; }
  .partner-logo--energy { width: 65px; height: 65px; }
  .partner-logo--bank { width: 44px; height: 80px; }
  .partner-logo--fundusz { width: 85px; height: 50px; }
  .partner-logo--innovations { width: 70px; height: 70px; }

  .partners-bg-orb--left,
  .partners-bg-orb--right {
    display: none;
  }
}

/* PARTNERS BREAKPOINT 3: Mobile (480px and below) */
@media (max-width: 480px) {
  .partners-section {
    padding: 40px 15px;
    gap: 40px;
  }

  .partners-container {
    gap: 40px;
  }

  .partners-title {
    font-size: 36px;
    line-height: 48px;
  }

  .partners-subtitle {
    font-size: 14px;
  }

  .partners-logos {
    gap: 30px;
    max-width: 100%;
  }

  .partner-logo--solarwinds { width: 120px; height: 28px; }
  .partner-logo--energy { width: 55px; height: 55px; }
  .partner-logo--bank { width: 35px; height: 65px; }
  .partner-logo--fundusz { width: 70px; height: 42px; }
  .partner-logo--innovations { width: 60px; height: 60px; }
}

/* ========================================= */
/* LEADERSHIP TEAM SECTION */
/* ========================================= */

.leadership-section {
  width: 100%;
  min-height: 710px;
  position: relative;
  margin: 100px auto;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: hidden;
}

/* Background Grid */
.leadership-bg-grid {
  position: absolute;
  width: 490px;
  height: 490px;
  left: calc(50% - 490px/2 + 475.5px);
  top: calc(50% - 490px/2 - 138px);
  z-index: 1;
}

.grid-line {
  position: absolute;
  width: 490px;
  height: 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.line-78 {
  left: 120px;
  top: 0px;
  transform: rotate(90deg);
}

.line-79 {
  left: 240px;
  top: 0px;
  transform: rotate(90deg);
}

.line-80 {
  left: 360px;
  top: 0px;
  transform: rotate(90deg);
}

.line-89 {
  left: 0px;
  top: 120px;
}

.line-90 {
  left: 0px;
  top: 240px;
}

.line-91 {
  left: 0px;
  top: 360px;
}

/* Background Orbs */
.ellipse-2984 {
  position: absolute;
  width: 182px;
  height: 182px;
  left: calc(50% - 182px/2 - 216px);
  top: 111px;
  background: #8CA340;
  filter: blur(135px);
  z-index: 1;
}

.ellipse-2985 {
  position: absolute;
  width: 182px;
  height: 182px;
  left: calc(50% - 182px/2 - 1113px);
  top: 595px;
  background: #8CA340;
  filter: blur(135px);
  z-index: 1;
}

/* Main Content Container */
.leadership-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 70px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Section */
.leadership-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.leadership-title {
  width: 100%;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-size: 72px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #7B8950;
  margin: 0;
}

.leadership-subtitle {
  width: 100%;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Team Grid - Cards in One Row */
.leadership-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 34px;
  width: 100%;
  max-width: 1300px;
  flex-wrap: nowrap;
}

/* Leadership Cards */
.leadership-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
  gap: 10px;
  width: 300px;
  height: 291px;
  background: rgba(123, 137, 80, 0.39);
  border: 1px solid rgba(123, 137, 80, 0.39);
  border-radius: 20px;
  flex: none;
  flex-grow: 0;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.leadership-card:hover {
  transform: translateY(-5px);
}

.leadership-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 268px;
  height: 259px;
}


.leadership-image {
  width: 268px;
  height: 147px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
  display: block; 
  object-position: center top;
}

.image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7B8950, #8CA340);
  color: #FCB117;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 32px;
  border-radius: 20px;
  z-index: 1;
  display: none;
}

/* Show fallback only when image fails to load */
.team-photo[src=""],
.team-photo:not([src]) {
  display: none;
}

.team-photo[src=""] + .image-fallback,
.team-photo:not([src]) + .image-fallback {
  display: flex;
}

.leadership-card:hover .team-photo {
  transform: scale(1.05);
}

.leadership-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: 268px;
  height: 100px;
}

.leadership-name-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: auto;
  height: 56px;
}

.leadership-name {
  width: auto;
  height: 27px;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.02em;
  color: #FCB117;
  margin: 0;
}

.leadership-role {
  width: auto;
  height: 21px;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.02em;
  color: #FCB117;
  margin: 0;
}

.leadership-description {
  width: 268px;
  height: 36px;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

/* ========================================= */
/* RESPONSIVE DESIGN  */
/* ========================================= */

/* Large Desktop (1400px+) - 4 cards in one row */
@media (max-width: 1400px) {
  .leadership-section {
    height: auto;
    min-height: 710px;
  }
  
  .leadership-container {
    width: 95%;
  }
  
  .leadership-grid {
    gap: 20px;
    flex-wrap: nowrap;
  }
  
  .leadership-card {
    width: 300px;
  }
}

/* ========================================= */
/* LEADERSHIP SECTION 768PX  */
/* ========================================= */

/* 768px screens - 2x2 grid layout */
@media (max-width: 1024px) and (min-width: 768px) {
  .leadership-section {
    padding: 60px 20px !important;
    min-height: auto !important;
  }
  
  .leadership-container {
    gap: 50px !important;
  }
  
  .leadership-title {
    font-size: 48px !important;
    line-height: 56px !important;
  }
  
  .leadership-subtitle {
    font-size: 16px !important;
  }
  
  .leadership-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, auto) !important;
    gap: 25px !important;
    width: 100% !important;
    max-width: 650px !important;
    margin: 0 auto !important;
  }
  
  .leadership-card {
    width: 100% !important;
    height: 280px !important;
    margin: 0 !important;
    padding: 16px !important;
    box-sizing: border-box !important;
  }
  
  .leadership-card-content {
    width: 100% !important;
    height: 100% !important;
    gap: 12px !important;
  }
  
  .leadership-image {
    width: 100% !important;
    height: 140px !important;
  }
  
  .team-photo {
    width: 100% !important;
    height: 100% !important;
  }
  
  .leadership-info {
    width: 100% !important;
    height: auto !important;
    gap: 8px !important;
  }
  
  .leadership-name-title {
    width: 100% !important;
    height: auto !important;
  }
  
  .leadership-name {
    font-size: 16px !important;
    line-height: 24px !important;
    height: auto !important;
  }
  
  .leadership-role {
    font-size: 13px !important;
    line-height: 18px !important;
    height: auto !important;
  }
  
  .leadership-description {
    width: 100% !important;
    height: auto !important;
    font-size: 11px !important;
    line-height: 16px !important;
  }
  
  /* Hide background elements for cleaner look */
  .leadership-bg-grid,
  .ellipse-2984,
  .ellipse-2985 {
    display: none !important;
  }
}

/* Fine-tune for 768px specifically */
@media (max-width: 768px) and (min-width: 721px) {
  .leadership-grid {
    max-width: 680px !important;
    gap: 30px !important;
  }
  
  .leadership-card {
    height: 300px !important;
  }
  
  .leadership-image {
    height: 150px !important;
  }
  
  .leadership-name {
    font-size: 17px !important;
  }
  
  .leadership-description {
    font-size: 12px !important;
    line-height: 17px !important;
  }
}

@media (max-width: 720px) and (min-width: 669px) {
  .leadership-grid {
    max-width: 620px !important;
    gap: 20px !important;
  }
  
  .leadership-card {
    height: 260px !important;
  }
  
  .leadership-image {
    height: 130px !important;
  }
  
  .leadership-description {
    font-size: 10px !important;
    line-height: 15px !important;
  }
}

/* Mobile (below 768px) - Single column */
@media (max-width: 425px) {
  .leadership-section {
    padding: 60px 20px;
  }
  
  .leadership-container {
    gap: 50px;
  }
  
  .leadership-title {
    font-size: 48px;
    line-height: 60px;
  }
  
  .leadership-subtitle {
    font-size: 16px;
  }
  
  .leadership-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .leadership-card {
    width: 100%;
    max-width: 300px;
    height: 291px;
  }
  
  .leadership-bg-grid,
  .ellipse-2984,
  .ellipse-2985 {
    display: none;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .leadership-section {
    padding: 40px 15px;
  }
  
  .leadership-container {
    gap: 40px;
  }
  
  .leadership-title {
    font-size: 36px;
    line-height: 46px;
  }
  
  .leadership-subtitle {
    font-size: 14px;
  }
  
  .leadership-card {
    padding: 12px;
    height: 280px;
  }
  
  .leadership-card-content {
    width: 100%;
    height: auto;
  }
  
  .leadership-image {
    width: 100%;
    height: 140px;
  }
  
  .leadership-info {
    width: 100%;
    height: auto;
  }
  
  .leadership-description {
    width: 100%;
    height: auto;
  }
}