.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.faq-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: #f7f7f7;
  border: none;
  outline: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: #222;
}

.faq-question:hover {
  background: #eeeeee;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fff;
}

.faq-answer p {
  padding: 0 20px 18px 20px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.hauptbild{
    width: 300px;
    border-radius: 20px;
    transition:0.2s;
}

.fenster img:hover{
    transform:scale(1.1); 
}

.tabl_fenster{
    display: flex;
    justify-content:space-around;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.merezi{
    display: flex;
    justify-content: center;
}

.price-table {
    width: 90%;
    margin: 40px auto;
    font-size: 18px;
}

.price-header,
.price-row {
    display: grid;
    grid-template-columns: 60px 2fr 1.2fr 1.6fr;
}

.price-header div {
    background: #dfba84;
    font-weight: bold;
}

.price-header div,
.price-row div {
    border: 1px solid #789;
    padding: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-note {
    border: 1px solid #789;
    padding: 14px;
    font-size: 16px;
    font-style: italic;
}

.price-download{
    text-align:center;
    margin:40px 0 20px;
}

.price-download p{
    margin-bottom:15px;
    font-size:18px;
}

.download-btn{
    display:inline-block;
    padding:14px 30px;
    background:#8b5e3c;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    transition:.25s;
}

.download-btn:hover{
    background:#6f492f;
}

table,th,td{
  border: 1px solid grey;
  text-align:center;
} 

th,td{
   padding:10px;
}

th{
 background:#FFDEAD;
}


@media (max-width: 768px){

    .tabl_fenster{
        flex-direction: column;
        align-items: center;
        gap: 30px;

        margin-top: 20px;
        padding: 0 10px;
    }

    .hauptbild{
        width: 100%;
        max-width: 340px;
    }

    .fenster{
        width: 100%;
        text-align: center;
    }

    .fenster h2{
        margin-bottom: 12px;
    }
	
	.price-table {
        width: 95%;
        font-size: 16px;
    }

    .price-header {
        display: none;
    }

    .price-row {
        display: block;
        margin-bottom: 18px;
        border: 1px solid #789;
        border-radius: 8px;
        overflow: hidden;
    }

    .price-row div {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        border: none;
        border-bottom: 1px solid #ddd;
    }

    .price-row div::before {
        content: attr(data-label);
        font-weight: bold;
        text-align: left;
        color: #555;
    }

    .price-row div:last-child {
        border-bottom: none;
    }

    .price-note {
        font-size: 14px;
        line-height: 1.4;
    }
}