.vimeoacc {
  padding: 40px 0;
}

.vimeoacc.fullwidth {
  padding-left: 0;
  padding-right: 0;
}

.vimeoacc h2 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
}

.vimeoacc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;

}

.vimeoacc-card:hover {
 
}

.vimeoacc-video {
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.vimeoacc-video iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.vimeoacc-accordion {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vimeoacc .accordion {
  border: none;
  border-top: 1px solid #e0e0e0;
  border-radius: 0;
  margin: 0;
  overflow: visible;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vimeoacc .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}


.vimeoacc .accordion-header h4 {
  margin: 0;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  font-size: 22px;
}

.vimeoacc .accordion-header .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.vimeoacc .accordion.active .accordion-header .icon {
  transform: rotate(180deg);
}

.vimeoacc .accordion-content {
  padding: 20px;
  background-color: #f9f9f9;
  display: none;
  border-top: 1px solid #e0e0e0;
  flex: 1;
  overflow-y: auto;
}

.vimeoacc .accordion.active .accordion-content {
  display: block;
}

.vimeoacc .accordion-content p {
  margin: 0 0 15px 0;
  line-height: 1.6;
  color: #555;
  font-size: 14px;
}

.vimeoacc .accordion-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .vimeoacc {
    padding: 30px 0;
  }

  .vimeoacc h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }


  .vimeoacc .accordion-header {
    padding: 15px;
  }

  .vimeoacc .accordion-header h4 {
    font-size: 15px;
  }

  .vimeoacc .accordion-content {
    padding: 15px;
  }
  

}

@media (max-width: 576px) {
  .vimeoacc h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }


  
}
