.steps {
    text-align: left;
    display: inline-block;
    margin-bottom: 0px;
  }
  .steps li {
    margin: 10px 0;
    list-style: none;
    padding-left: 25px;
    position: relative;
  }
  .steps li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
  }

 
 /* Výhody sekce */
      .benefits ul {
        list-style: none;
        padding: 0;
      }
      .benefits li {
        font-size: 1.1em;
        margin: 15px 0;
        padding-left: 40px;
        position: relative;
      }
      .benefits a {
        font-size: 1.1em;
        margin: 0 0;
        padding-left: 0;
        position: relative;
      }
      .benefits li::before {
        content: "✔️";
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2em;
        color: var(--secondary-color);
      }


.cta-button {
    background: rgb(11, 27, 61);
    color: white;
    padding: 10px 10px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }


/* 566 */



/* Sekce FAQ */
.faq {

}

.faq h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #2c3e50;
}

.faq-container {
    
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 1.2em;
    margin: 0;
    color: #2c3e50;
}

.faq-question i {
    font-size: 1.3em;
    color: #2c3e50;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    font-size: 1.1em;
    color: #000000;
    margin: 10px 0;
}

.faq-item.active .faq-answer {
    max-height: 2000px; /* Přizpůsobte podle potřeby */
    padding: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responzivita */
@media (max-width: 768px) {
    .faq-question h3 {
        
    }

    .faq-question i {
        
    }

    .faq-answer p {
        
    }
}