/* Service details styling */
.service-details .services-list {
  background-color: var(--surface-color, #fff);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color, #333), transparent 90%);
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.service-details .services-list a {
  display: block;
  line-height: 1.4;
  padding: 12px 0 12px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color, #333), transparent 70%);
  margin: 15px 0;
  color: color-mix(in srgb, var(--default-color, #333), transparent 20%);
  transition: all 0.3s ease;
  font-family: 'Futura Medium', sans-serif;
  text-decoration: none;
}

.service-details .services-list a.active {
  color: var(--brand-blue, #323275);
  font-family: 'Futura Bold', sans-serif;
  border-color: var(--brand-blue, #323275);
  background-color: rgba(50, 50, 117, 0.05);
  border-radius: 0 4px 4px 0;
}

.service-details .services-list a:hover {
  border-color: var(--brand-blue, #323275);
  background-color: rgba(50, 50, 117, 0.02);
  transform: translateX(2px);
}

.service-details .services-img {
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-details .services-img:hover {
  transform: scale(1.01);
}

.service-details h3 {
  font-size: 26px;
  font-family: 'Futura Bold', sans-serif;
  color: var(--brand-dark, #1d1d1b);
  margin-bottom: 20px;
}

.service-details h4 {
  font-size: 20px;
  font-family: 'Futura Bold', sans-serif;
  color: var(--brand-blue, #323275);
  margin: 25px 0 15px;
}

.service-content.hidden {
  display: none;
}

.service-content .img-fluid {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.table-responsive {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.table {
  margin-bottom: 0;
}

.table th {
  background-color: var(--brand-blue, #323275);
  color: #fff;
  font-family: 'Futura Bold', sans-serif;
  font-weight: 600;
  border-color: rgba(255,255,255,0.2);
}

.table td, .table th {
  padding: 12px 15px;
  vertical-align: middle;
}

.table td {
  border-color: rgba(0,0,0,0.05);
  color: var(--brand-gray, #3c3c3b);
  font-family: 'Futura Medium', sans-serif;
}

.feature-list {
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: start;
  font-family: 'Futura Medium', sans-serif;
}

.feature-list li i {
  color: var(--brand-blue, #323275);
  margin-right: 10px;
  margin-top: 4px;
  font-size: 18px;
}

/* Page title styling */
.page-title {
  background-color: var(--brand-blue, #323275);
  background-size: cover;
  background-position: center;
  padding: 120px 0 60px;
  position: relative;
  color: #fff;
  margin-bottom: 40px;
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(29, 29, 27, 0.7), rgba(50, 50, 117, 0.7));
  z-index: 1;
}

.page-title .container {
  position: relative;
  z-index: 2;
}

.page-title h1 {
  font-size: 36px;
  font-family: 'Futura Bold', sans-serif;
  margin-bottom: 15px;
}

.page-title p {
  font-size: 18px;
  font-family: 'Futura Medium', sans-serif;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-details .services-list {
    margin-bottom: 40px;
  }
  
  .page-title {
    padding: 100px 0 50px;
  }
}

@media (max-width: 768px) {
  .service-details h3 {
    font-size: 22px;
  }
  
  .service-details h4 {
    font-size: 18px;
  }
  
  .page-title h1 {
    font-size: 28px;
  }
  
  .page-title p {
    font-size: 16px;
  }
}
