.fafo-main-container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  overflow: visible;
  /* allow shadows to show */
  font-family: Arial, sans-serif;
  min-height: 520px;
}

.fafo-image-container {
  flex: 1 1 40%;
  overflow: hidden;
}

.fafo-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.fafo-container {
  flex: 1 1 60%;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.fafo-row {
  display: flex;
  align-items: stretch;
  position: relative;
  height: 50px;
}

.fafo-label {
  background: linear-gradient(135deg, #73a96a, #73a96a);
  color: white;
  font-weight: 600;
  font-size: 1em;
  min-width: 200px;
  padding: 0 30px 0 20px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 0% 100%);
  /* Stronger, cross-browser shadow */
  -webkit-filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
  /* Fallback */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.fafo-value {
  background: #e5ffe1;
  color: black;
  padding: 0 20px;
  font-size: 0.95em;
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-left: -20px;
  padding-left: 40px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fafo-main-container {
    flex-direction: column;
  }

  .fafo-row {
    height: auto;
    flex-direction: column;
  }

  .fafo-label {
    clip-path: none;
    min-width: auto;
  }

  .fafo-value {
    margin-left: 0;
    padding-left: 20px;
  }
}


.f-collage-row {
  padding-top: 50px;
  display: flex;
  gap: 15px;
  width: max-content;
}

.f-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.f-img {
  object-fit: cover;
  width: 241px;
  border-radius: 8px;
}

.f-img-tall {
  height: 322px;
}

.f-img-small-top {
  height: 160px;
}

.f-img-small-bottom {
  height: 241px;
}


/* Origin  */