/* Container */
.accordion-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
}

/* Accordion Item */
.accordion-item {
    border-bottom: 1px solid #d0d0d0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:first-child {
    border-top: 1px solid #d0d0d0;
}

/* Accordion Header */
.accordion-header {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background-color: #E9E9E9;
}

/* Chevron Icon - CSS-basierter Pfeil */
.chevron {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

/* Chevron als Pfeil nach rechts (closed state) */
.chevron::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 3px solid #8F887B;
    border-bottom: 3px solid #8F887B;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -7px;
}

/* Chevron nach unten rotieren wenn aktiv (open state) */
.accordion-item.active .chevron::before {
    transform: rotate(45deg);
    margin-top: -8px;
    margin-left: -5px;
}

/* Überschrift (H3) - UPPERCASE Formatierung */
.accordion-header h3 {
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 0.3px;
    margin: 0;
    text-transform: uppercase;
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #ffffff;
    padding: 0 30px 0 74px; /* 30px + 24px (chevron) + 20px (margin) = 74px */
}

.accordion-item.active .accordion-content {
    max-height: 3000px;
    padding: 0 30px 24px 74px;
}

/* Body Text */
.accordion-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Listen-Formatierung */
.accordion-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.accordion-content ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Öffnungszeiten-Block Formatierung */
.schedule-block {
    margin: 12px 0;
    background-color: #f9f9f9;
    padding: 12px 16px;
    border-radius: 4px;
}

.schedule-block p {
    display: flex;
    margin-bottom: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.schedule-block p:last-child {
    margin-bottom: 0;
}

.schedule-days {
    min-width: 120px;
    font-weight: 500;
    color: #333333;
}

.schedule-times {
    color: #555555;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .accordion-header {
        padding: 18px 20px;
    }

    .accordion-header h3 {
        font-size: 18px;
    }

    .chevron {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-right: 15px;
    }

    .chevron::before {
        width: 8px;
        height: 8px;
        border-width: 2.5px;
        margin-top: -4px;
        margin-left: -6px;
    }

    .accordion-item.active .chevron::before {
        margin-top: -6px;
        margin-left: -4px;
    }

    .accordion-content {
        padding: 0 20px 0 55px; /* 20px + 20px + 15px = 55px */
    }

    .accordion-item.active .accordion-content {
        padding: 0 20px 18px 55px;
    }

    .accordion-content p,
    .accordion-content ul li {
        font-size: 15px;
    }

    .schedule-days {
        min-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .accordion-header {
        padding: 15px;
    }

    .accordion-header h3 {
        font-size: 16px;
    }

    .chevron {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin-right: 12px;
    }

    .chevron::before {
        width: 7px;
        height: 7px;
        border-width: 2px;
        margin-top: -3.5px;
        margin-left: -5px;
    }

    .accordion-item.active .chevron::before {
        margin-top: -5px;
        margin-left: -3.5px;
    }

    .accordion-content {
        padding: 0 15px 0 45px; /* 15px + 18px + 12px = 45px */
    }

    .accordion-item.active .accordion-content {
        padding: 0 15px 15px 45px;
    }

    .accordion-content p,
    .accordion-content ul li {
        font-size: 14px;
    }

    /* Öffnungszeiten auf Mobile stapeln */
    .schedule-block p {
        flex-direction: column;
    }

    .schedule-days {
        min-width: auto;
        margin-bottom: 2px;
    }
}

/* ============================================
   PRICING LAYOUT 2-SPALTIG
   ============================================ */

/* Äußerer Wrapper */
.pricing-two-col {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
}

/* Grid: zwei gleichbreite Spalten */
.pricing-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    padding: 0 30px 24px;
}

/* Spalten-Überschrift */
.pricing-col-heading {
    font-size: 13px;
    font-weight: 600;
    color: #8F887B;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1px solid #d0d0d0;
    margin-bottom: 4px;
}

/* Trennlinie zwischen den Spalten */
.pricing-col:first-child {
    border-right: 1px solid #e0e0e0;
    padding-right: 20px;
}

.pricing-col:last-child {
    padding-left: 20px;
}

/* Preiszeilen im 2-Spalter: kein extra horizontales Padding */
.pricing-two-col .price-row {
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.pricing-two-col .price-row:first-of-type {
    border-top: 1px solid #e8e8e8;
}

/* Innerhalb accordion-content: kein doppeltes Padding */
.accordion-content .pricing-two-col {
    max-width: none;
    margin: 16px 0 0;
}

.accordion-content .pricing-two-col-grid {
    padding: 0;
}

/* Responsive: ab 768px Spalten untereinander */
@media screen and (max-width: 768px) {
    .pricing-two-col-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px 20px;
    }

    .pricing-col:first-child {
        border-right: none;
        border-bottom: 1px solid #d0d0d0;
        padding-right: 0;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .pricing-col:last-child {
        padding-left: 0;
    }

    .accordion-content .pricing-two-col-grid {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .pricing-two-col-grid {
        padding: 0 15px 15px;
    }

    .pricing-two-col .price-row {
        flex-direction: column;
        padding: 10px 0;
    }

    .pricing-two-col .price-item {
        padding-right: 0;
        margin-bottom: 4px;
    }

    .pricing-two-col .price-value {
        text-align: left;
        font-weight: 600;
        min-width: auto;
    }
}

/* ============================================
   PREISTABELLE STYLES (1-spaltig, standalone)
   ============================================ */

/* Container für Preistabelle */
.price-table-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
}

/* Einzelne Preiszeile */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 30px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.price-row:first-child {
    border-top: 1px solid #e0e0e0;
}

.price-row:hover {
    background-color: #f9f9f9;
}

/* Linke Seite: Service-Information */
.price-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 20px;
}

/* Service-Name (bold) */
.service-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 4px;
}

/* Service-Beschreibung (regular) */
.service-description {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.4;
}

/* Rechte Seite: Preis */
.price-value {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
    min-width: 120px;
    text-align: right;
}

/* Responsive Design für Preistabelle */
@media screen and (max-width: 768px) {
    .price-row {
        padding: 14px 20px;
    }

    .service-name {
        font-size: 15px;
    }

    .service-description {
        font-size: 14px;
    }

    .price-value {
        font-size: 15px;
        min-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .price-row {
        flex-direction: column;
        padding: 12px 15px;
    }

    .price-item {
        padding-right: 0;
        margin-bottom: 8px;
    }

    .service-name {
        font-size: 14px;
    }

    .service-description {
        font-size: 13px;
    }

    .price-value {
        text-align: left;
        font-size: 15px;
        font-weight: 600;
        min-width: auto;
    }
}
