/*
Theme Name: Prespa Child
Template: prespa
*/

/* Divider style */
.my-divider {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, #ccc, #333, #ccc);
  margin: 40px 0;
  width: 100%;
  clear: both;
}

/* Accordion container spans full width */
.js-accordion {
    width: 100%;
    margin: 0 auto;
}

/* Accordion header styling */
.js-accordion .accordion-header {
    background: #eee;
    border: 1px solid #ddd;
    padding: 1em;
    cursor: pointer;
    margin: 0;
    font-family: sans-serif;
}

/* Active header style */
.js-accordion .accordion-header.active {
    background: #ccc;
}

/* Accordion content area */
.js-accordion .accordion-content {
    border: 1px solid #ddd;
    border-top: none;
    padding: 1em;
    overflow: hidden;
    display: none;  /* Hidden by default; shown via JS */
}

/* Fancy list styling */
.fancy-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}
.fancy-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
    font-family: sans-serif;
    font-size: 1rem;
    color: #2c3e50;
}
.fancy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #2c3e50;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.fancy-list li:hover::before {
    transform: translateY(-50%) scale(1.2);
    background-color: #2980b9;
}
