/* CONTAINER */
.container {
    max-width: 1300px;
    margin: auto;
    padding: 2.5rem 10%;
}

/* INTRO - BEVEZETŐ */
.intro {
  text-align: center;
  padding: 3rem 10% 2rem;
  max-width: 100%;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.01);
} 

.intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* KÉRDÉSEK SZEKCIÓ */

.faq {
    max-width: 1300px;
}

.faq-content {
    background: white(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 1rem;
    padding-bottom: 0px;
    padding-top: 0;
}

.question {
    border-bottom: 1px solid rgb(189, 179, 145, .5);
    padding: 1rem;
}

.question summary {
    list-style: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.question summary::before {
    content: "❯";
    color: rgb(57 184 198);
    margin-right: 10px;
    transition: transform 0.2s ease;
}

.question[open] summary::before {
    transform: rotate(90deg);
}

.faq ul {
    list-style: none;
    padding: 1rem;
    margin-top: 10px;

    
}

.faq li {
    padding: .3rem;
}