/* SOFTWARE BOX UPDATED */
.software-box {
  max-width: 1200px;
  margin: 50px auto;
  padding: 30px;
  background: white;
  border: 1px solid #DCE4EC;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.box-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.box-image img {
  width: 90px;
  height: auto;
  border-radius: 8px;
}

.box-info {
  flex: 1;
  min-width: 200px;
}

.software-title {
  margin: 0;
  color: #1E1E1E;
  font-size: 1.5rem;
}

.company-name, .price-tag, .ratings {
  margin: 5px 0;
  color: #313131;
}

.price-label {
  background-color: #14855F;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-right: 5px;
}

.box-video {
  flex: 1;
  min-width: 300px;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
}

/* Tabs */
.box-tabs {
  margin-top: 25px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 15px;
}

.tab-buttons button {
  padding: 10px 16px;
  background: #F0F5FA;
  border: 1px solid transparent;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  color: #0064C8;
  cursor: pointer;
}

.tab-buttons button.active {
  background: white;
  border: 1px solid #0064C8;
  border-bottom: none;
}

.tab-panel {
  display: none;
  padding-top: 10px;
  color: #313131;
}

.tab-panel.active {
  display: block;
}

/* Footer CTA */
.box-footer {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.test-button {
  background: #0064C8;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.test-button:hover {
  background: #14855F;
}

@media (max-width: 768px) {
  .box-top {
    flex-direction: column;
  }
  .box-info {
    order: 2;
  }
  .box-video {
    order: 3;
  }
  .box-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


.facility-types-section {
  background-color: #14855F0D;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
}

.facility-types-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.facility-types-section h2 {
  color: #1E1E1E;
  font-size: 28px;
  margin-bottom: 20px;
}

.facility-types-section p {
  color: #313131;
  margin-bottom: 10px;
  line-height: 1.6;
}

.accordion {
  margin-top: 30px;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  background: #ffffff;
  color: #1E1E1E;
  padding: 16px 20px;
  font-weight: bold;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 1px solid #CFCFCF;
}

.accordion-body {
  padding: 15px 20px;
  color: #313131;
  display: none;
  background: #ffffff;
}

.accordion-header.active + .accordion-body {
  display: block;
}

.accordion-body ul {
  padding-left: 20px;
  margin-top: 10px;
}

.accordion-body ul li {
  list-style-type: disc;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .facility-types-section h2 {
    font-size: 22px;
  }
  .accordion-header {
    font-size: 15px;
    padding: 14px 16px;
  }
  .accordion-body {
    padding: 14px 16px;
  }
}
