.region-content {
    display: flex;
    flex-direction: column;
}

.main-wrapper {
    padding: 70px var(--padding-page);
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#block-enertef-theme-servicespager {
    align-self: flex-end;
    padding: 0px var(--padding-page);
}

.change-page-button {
    padding: 7px 15px;
    border: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-size: 20px;
    outline: none;
}

.page-number-button {
    background-color: transparent;
    font-size: 20px;
    color: white;
    outline: none;
    border: none;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 20px;
  border-right: 1px solid white;
  height: 100%;
}

.accordion {
  width: 250px;
  position: relative;
  z-index: 2;
}

.accordion-header {
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin-bottom: 5px;
  font-size: 18px;
}
 .accordion-icon {
     width: 24px;
     height: 24px;
      margin-right: 8px;
      transition: transform 0.2s;
    }
    .accordion.open .accordion-icon {
      transform: rotate(180deg);
    }
    .accordion-content {
      display: none;
      padding: 12px;
      color: white;
    }
    .accordion.open .accordion-content {
      display: block;
    }
    .filter-options label {
      display: block;
      margin-bottom: 8px;
      cursor: pointer;
    }
    
.filter-options input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-text-highlight--1); 
  vertical-align: middle;
  margin-top: 1px;
  flex-shrink: 0;
}

.filter-options label {
  display: flex;
  align-items: flex-start;
  /*margin-bottom: 8px;*/
  cursor: pointer;
  line-height: 1.4;
  /* Optional: add gap for spacing between checkbox and text */
  gap: 10px;
  /* Ensure text wraps nicely next to checkbox */
  white-space: normal;
  word-break: break-word;
  max-width: 90%;
}

.clear-filters-button {
  padding: 23px;
  border: 1px solid white;
  border-radius: 45px;
  color: white;
  background-color: transparent;
  cursor: pointer;
align-self: flex-end;
}

.view-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-title {
    font-size: 32px;
    line-height: 34px;
    color: var(--color-text-highlight--1);
}

.end-user-wrapper {
    display: flex;
    flex-direction: row;
    gap: 7px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.service-description {
    font-size:14px;
    line-height: 18px;
    opacity: 0.75;
}

.core-capabilities-values ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.core-capabilities-values li {
    border: 1px solid white;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 35px;
    padding: 12px 16px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
}

.views-field-field-service-tef {
    display: none;
}

.current-page-button {
    border: 1px solid white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 5px;
}

@media screen and (max-width: 769px) {
    .main-wrapper {
        flex-direction: column;
    }

    .filters {
      gap: 20px;
      padding-right: 0px;
      border-right: 0px solid white;
      height: auto;
      flex-wrap: wrap;
    }
    
    .accordion {
      width: 100%;
    }
}
