/* Two Column Layout - Custom Upholstery */
section#content-sectionupholstery {
  background: #808a54;
}

/* Base Styles */
.two-column-container {
  display: flex;
  gap: 60px;
  max-width: 1410px;
  margin: 50px auto;
}

/* Gallery Column */
.gallery-column {
  flex: 1;
  max-width: 50%;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gallery-row {
  display: flex;
  gap: 15px;
}

.gallery-row-1 {
  gap: 15px;
}

.gallery-row-2 {
  gap: 15px;
  align-items: stretch;
}

.gallery-item {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-item-1,
.gallery-item-2 {
  flex: 1;
  height: 200px;
}

.gallery-item-3 {
  flex: 1;
  /* 50% of the width */
  height: 400px;
}

.gallery-item-stack {
  flex: 1;
  /* 50% of the width */
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 400px;
  /* Match the height of gallery-item-3 */
}

.gallery-item-4,
.gallery-item-5 {
  flex: 1;
  height: calc(50% - 7.5px);
  /* Half of the stack height minus half the gap */
}

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

/* Content Column */
.content-column {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-subtitle {
  font-size: 21px;
  color: #00a7b5;
  font-weight: 600;
  margin: 0 0 30px 0;
}

.content-body {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.content-paragraph {
  font-size: 18px;
  color: #333f48;
  margin: 0;
}

/* Sustainability Section */
.sustainability-section {
  background-color: #ffffff;
  width: 100%;
  margin: 80px 0;
  padding: 0;
}

.sustainability-background {
  width: 100%;
}

.sustainability-container {
  max-width: 1410px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding: 0 30px;
  box-sizing: border-box;
}

.sustainability-first-row {
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  padding: 50px 40px;
  box-sizing: border-box;
  border-radius: 24px;
}

.sustainability-image {
  flex: 0 0 320px;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sustainability-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sustainability-copy {
  flex: 1;
  min-width: 0;
  max-width: 880px;
  width: auto;
}

.sustainability-copy h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  color: #37401a;
  margin: 0 0 20px 0 !important;
}

.sustainability-copy p {
  font-size: clamp(14px, 3vw, 18px);
  color: #333f48;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.sustainability-copy p:last-child {
  margin-bottom: 0;
}

.fsc-logo {
  max-width: 120px;
  height: auto;
}

.bibbulmun-faq-section {
  background: linear-gradient(360deg, #f5f3ef 0%, #e9e5dd 100%, rgba(255, 255, 255, 1) 0%);
  padding: 70px 0;
}

.bibbulmun-faq-wrapper {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 15px;
  padding-bottom: 30px;
}

.bibbulmun-faq-title {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.1;
  color: #3d441e;
  text-align: left;
  margin: 30px 0 100px;
  font-weight: 700;
}

.bibbulmun-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 140px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.faq-question {
  position: relative;
  display: block;
  padding-right: 140px;
  font-size: 20px;
  font-weight: 700;
  color: #3d441e;
  margin: 0 0 14px;
  text-align: left;
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  transform: translateY(-50%);
  width: 25px;
  height: 1px;
  background-color: #041e0c;
}

.faq-question-decor {
  display: none;
}

.faq-answer {
  color: #3d441e;
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.faq-answer:last-child {
  margin-bottom: 0;
}

.bibbulmun-fund-hero-section {
  background-image: url('https://olgoffice.com/wp-content/uploads/2026/08/Background-Logo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 0;
}

.bibbulmun-fund-hero-inner {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.bibbulmun-fund-hero-logo {
  width: clamp(180px, 23vw, 340px);
  max-width: 340px;
}

.bibbulmun-fund-hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.bibbulmun-fund-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: linear-gradient(to bottom, #CB6015 0%, #CB6015 50%, #3D441E 50%, #3D441E 100%);
  background-size: 100% 200%;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.bibbulmun-fund-hero-button:hover,
.bibbulmun-fund-hero-button:focus-visible {
  background-position: 0 100%;
  transform: translateY(-1px);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .bibbulmun-fund-hero-section {
    padding: 100px 0;
  }

  .bibbulmun-fund-hero-inner {
    gap: 24px;
    padding: 0 24px;
  }

  .bibbulmun-fund-hero-logo {
      width: clamp(160px, 30vw, 300px);
  }

  .bibbulmun-fund-hero-button {
    width: 100%;
    max-width: 360px;
    padding: 16px 28px;
  }
}

@media screen and (max-width: 767px) {
  .bibbulmun-fund-hero-section {
    padding: 70px 0;
  }

  .bibbulmun-fund-hero-inner {
    gap: 18px;
    padding: 0 18px;
  }

  .bibbulmun-fund-hero-logo {
    width: 220px;
  }

  .bibbulmun-fund-hero-button {
    padding: 14px 24px;
    font-size: 14px;
  }
}

div#customupholstery {
  scroll-margin-top: 0px;
}

/* Responsive Breakpoints */
/* Large Desktop (2561px+) */
@media screen and (min-width: 2561px) {
}

/* Desktop (1441px - 2560px) */
@media screen and (min-width: 1441px) and (max-width: 100000px) {
  .bibbulmun-faq-wrapper {
  padding: 0;
}
}

/* Large Tablet (1025px - 1440px) */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .sustainability-container {
    padding: 0 15px;
  }
}

/* Tablet (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .two-column-container {
    align-items: center;
    gap: 30px;
  }

  p.content-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px 0;
  }

  .content-body {
    gap: 20px;
  }

  p.content-paragraph {
    font-size: 14px;
  }

  /* Sustainability Section */
  .sustainability-section {
    margin: 0 auto;
  }

  .sustainability-first-row {
    flex-direction: column;
    gap: 5px;
    padding: 30px 0px;
  }

  .sustainability-image img {
    max-width: 95%;
  }

  .sustainability-container {
    flex-direction: column;
    padding: 0 15px;
    gap: 15px;
  }

  .sustainability-text {
    font-size: 16px;
  }

  .fsc-logo {
    max-width: 80px;
  }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
  .two-column-container {
    gap: 15px;
    flex-direction: column;
    margin: 30px auto;
  }

  .gallery-column,
  .content-column {
    max-width: 100%;
  }

  /* Mobile Gallery Layout - Single Column */
  .gallery-grid {
    gap: 10px;
  }

  .bibbulmun-faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bibbulmun-faq-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 18px;
    gap: 12px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .gallery-item-3 {
    height: 200px;
  }

  .gallery-item-stack {
    height: 200px;
    gap: 10px;
  }

  .gallery-item-4,
  .gallery-item-5 {
    height: calc(50% - 5px);
  }

  p.content-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px 0;
  }

  .content-body {
    gap: 20px;
  }

  p.content-paragraph {
    font-size: 14px;
  }

  /* Sustainability Section */
  .sustainability-section {
    margin: 0 auto;
  }

  .sustainability-first-row {
    flex-direction: column;
    gap: 5px;
    padding: 30px 0px;
  }

  .sustainability-image img {
    max-width: 90%;
  }

  .sustainability-container {
    flex-direction: column;
    padding: 0 15px;
    gap: 15px;
  }

  .sustainability-content,
  .sustainability-logo {
    max-width: 100%;
  }

  .sustainability-text {
    font-size: 14px;
  }

  .fsc-logo {
    max-width: 60px;
  }
  .bibbulmun-faq-section {
  padding: 40px 0;
}
}