#pk_flex_content .flex_layout.afbeelding_accordion {
    position: relative;
    max-width: 100%;
}

  .image-accordion__section .component__wrapper {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  /* Left content (images) */
  .image-accordion__section .component__content-left {
    position: relative;
    height: 100%;
    margin-bottom: 32px;
  }
  

  .image-accordion__section .component__content-left .compontent-image__wrapper {
    position: relative;
  }
  
  .image-accordion__section .component__content-left .compontent-image__wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .image-accordion__section .component__content-left .compontent-image__wrapper .image-big {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }

  
  
  .image-accordion__section .component__content-left .compontent-image__wrapper .image-small {
    display: none;
    position: absolute;
    right: 0px;
    bottom: -50px;
    left: 0;
    max-width: 55vw;
    margin:0  auto;
    margin-bottom: 0;
  }
  
  /* Right content (text and accordion) */
  .image-accordion__section .component__content-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 60px;
  }
  
  /* Header styling */
  .image-accordion__section .component__content-right .component__header h2 {
    font-size: clamp(42px, 42px + (72 - 42) * ((100vw - 350px) / (1320 - 350)), 72px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  
  .image-accordion__section .component__content-right .component__header span {
    font-style: italic;
  }
  
  .image-accordion__section .component__content-right .component__header p {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .image-accordion__section .component__content-right .btn {
    margin-top: 32px;
  }
  
  /* Accordion styling */
  .image-accordion__section .component__body {
    width: 100%;
    border-top: 2px solid var(--black);
  }
  
  .image-accordion__section .component__body .component__item {
    width: 100%;
    padding: 16px 0;
    border-bottom: 2px solid var(--black);
  }
  
  .image-accordion__section .component__body .component__item .component__item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    cursor: pointer;
  }
  
  .image-accordion__section .component__body .component__item .component__item-head h3 {
    font-size: 24px;
    font-weight: bold;
    text-transform: none;
    max-width: 90%;
    margin-bottom: 0;
  }
  
  /* SVG animation */
  .image-accordion__section .component__body .component__item .component__item-head svg {
    width: 26px;
    height: 26px;
    transform-origin: center;
    transition: rotate 300ms ease-in-out;
  }
  
  .image-accordion__section .component__body .component__item.open .component__item-head svg {
    rotate: 225deg;
  }
  
  /* Accordion content */
  .image-accordion__section .component__body .component__item .component__item-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease-in-out, padding-block 300ms ease-in-out;
    overflow: hidden;
  }
  
  .image-accordion__section .component__body .component__item.open .component__item-content {
    grid-template-rows: 1fr;
  }
  
  .image-accordion__section .component__body .component__item .component__item-content .item__content-inner {
    max-width: 475px;
    overflow: hidden;
  }
  
  .image-accordion__section .component__body .item__content-inner p {
    font-size: 20px;
    line-height: 1.5;
    margin: 10px 0 0;
  }

  /* floating coffee beans */
.afbeelding_accordion  .floating-image{
    display: none;
    max-width: 250px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
  }

  /* Responsive styles */
  @media screen and (min-width: 767px) {
    
  .image-accordion__section .component__wrapper::before {
      max-width: calc(50% - 260px);
      width: 100%;
      height: 60%;
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      background: var(--light-blue);
    }

    .image-accordion__section .component__wrapper {
      grid-template-columns: repeat(12, 1fr);
      align-items: self-start;
    }

    .image-accordion__section .component__content-left {
      grid-column: 1 / 6;
      margin-bottom: 100px;
    }

    .image-accordion__section .component__content-left .compontent-image__wrapper img {
      width: 100%;
      height:100%;
    }
    
    .image-accordion__section .component__content-left .compontent-image__wrapper .image-big {
      height: 680px;
      margin-bottom: 0;
    }

    .image-accordion__section .component__content-right {
      grid-column: 6 / 13;
      padding-left: 20px;
    }
  
    .image-accordion__section .component__content-right .component__header h2 {
      margin-bottom: 40px;
    }
  }

  @media screen and (min-width: 991px) {
      /* Left content (images) */
    .image-accordion__section .component__content-left {
        padding-bottom: 0;
    }
    
    .image-accordion__section .component__content-left .compontent-image__wrapper .image-small {
        display: block;
        position: absolute;
        right: 40px;
        bottom: -150px;
        left: unset;
        max-width: 254px;
        margin-bottom: 0;
        height: 344px;
    }

    .image-accordion__section .component__content-right {
        grid-column: 7 / 12;
        padding-left: 0;
        padding-right: 20px;
        padding-bottom: 120px;
      }
      
  }

  @media screen and (min-width: 1199px) {
    
    .afbeelding_accordion  .floating-image{
        display: block;
    }

    .image-accordion__section .component__content-left .compontent-image__wrapper .image-small {
      max-width: 334px;
    }

  }


  @media screen and (min-width: 1650px) {
    #pk_flex_content .flex_layout.afbeelding_accordion .holder.component__wrapper{
      max-width: 1390px;
      margin: 0 auto;
    }
    .image-accordion__section .component__content-left{
      position: unset;
    }
    
    .image-accordion__section .component__content-left .compontent-image__wrapper{
      position: relative;
      z-index: 1;
    }
    
  }