

/* Start:/local/components/custom/services.list/templates/.default/style.css?17437687973613*/
.services-accordion {
    padding: 20px;
    font-family: "Segoe UI", sans-serif;
    /* background-color: #121212; */
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    border-radius: 10px;
    overflow: hidden;
    /* background-color: #1e1e1e; */
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f35c50;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-card-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.service-card-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.preview-services {
    list-style: disc;
    padding: 10px 18px;
    font-size: 14px;
    color: #1a1a1a;
    /* background: #1a1a1a; */
    border-top: 1px solid #f35c50;
}

.preview-services li {
    margin-bottom: 4px;
}

.toggle-services {
    background-color: #f35c50;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin: 10px 18px;
    align-self: flex-start;
}

.toggle-services:hover {
    background-color: #f35c50;
}

.services-list {
    margin: 10px 18px;
    display: none;
    
    /* background: #1a1a1a; */
    padding: 10px;
    border: 1px solid #2c2c2c;
    border-radius: 6px;
    box-shadow: inset 0 0 6px rgba(255,255,255,0.03);
	 scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.services-list h4 {
    margin: 10px 0 5px;
    font-size: 16px;
    color: #1a1a1a;
}

.services-list ul {
    margin: 0;
    padding-left: 20px;
}

.services-list li {
    font-size: 14px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
    }
}


.services-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.services-description.desc-dark {
    color: #111;
}
.services-description.desc-light {
    color: #1a1a1a;
}
.services-list::-webkit-scrollbar {
    display: none;
}
@media (prefers-color-scheme: dark) {
  .services-accordion {
    background-color: #121212;
  }
  .service-card {
    background-color: #1e1e1e;
    border: 1px solid #2e2e2e;
  }
  .preview-services {
    background: #1a1a1a;
    color: #ccc;
    border-top: 1px solid #2c2c2c;
  }
  .services-list {
    background: #1a1a1a;
    color: #ddd;
    border: 1px solid #2c2c2c;
  }
  .services-list h4,
  .services-list li {
    color: #ccc;
  }
  .services-description {
    color: #eee;
  }
}
@media (prefers-color-scheme: light) {
  .services-accordion {
    background-color: #ffffff;
  }
  .service-card {
    background-color: #ffffff;
    border: 1px solid #eee;
  }
  .preview-services {
    background: #f9f9f9;
    color: #333;
    border-top: 1px solid #eee;
  }
  .services-list {
    background: #ffffff;
    color: #333;
    border: 1px solid #eee;
  }
  .services-list h4,
  .services-list li {
    color: #333;
  }
  .services-description {
    color: #111;
  }
}

/* End */
/* /local/components/custom/services.list/templates/.default/style.css?17437687973613 */
