/*
Theme Name: softwaresilo
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi 
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.27.4.1741790442
Updated: 2025-03-12 14:40:42

*/
.accordion-container {
  max-width: 800px;
  margin: 2rem auto;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.accordion-item {
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.accordion-header {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  background: #f9fafb;
  transition: background 0.3s ease;
  width:100%;
}

.accordion-header:hover {
  background: #f3f4f6;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(90deg);
}

.accordion-content-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.accordion-content {
  padding: 1rem 1.25rem;
  background: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion-content ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
}
.accordion-content ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom:0px;
}

.accordion-content ul li::before {
  content: "\f6d1"; /* fa-box */
  font-family: FontAwesome !important;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  color: #f3c16e;

  /* Schatten & Glanz */
  text-shadow:
    -0.5px -0.5px 0 #444444,
     0.5px -0.5px 0 #444444,
    -0.5px  0.5px 0 #444444,
     0.5px  0.5px 0 #444444;
  transition: all 0.3s ease;
}


