/* Path: style.css */
/* Styling für die H2-Überschrift des Widgets */
.widget_faq_accordion_widget .widget-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 2.2em;
    color: #1a1a1a;
    margin-top: 60px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 700;
}

/* Dein Original-CSS für das Akkordeon */
.faq-accordion-clean {
    margin: 20px auto;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.faq-item-clean {
    border-bottom: 1px solid #e0e0e0;
}
.faq-question-clean {
    cursor: pointer;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
.faq-title-clean {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
    padding-right: 15px;
}
.faq-question-clean:hover .faq-title-clean {
    color: #d1a448;
}
.faq-icon-clean {
    font-size: 1.5em;
    font-weight: 300;
    color: #7f8c8d;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
}
.faq-answer-clean {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    background-color: white;
}
.faq-answer-clean > * {
    padding: 0px 15px 25px 15px;
    margin: 0;
    line-height: 1.7;
    font-size: 1.05em;
    color: #333;
}
.faq-answer-clean > :first-child {
    padding-top: 10px;
}
.faq-item-clean.active .faq-title-clean {
    color: #d1a448;
}
.faq-item-clean.active .faq-icon-clean {
    transform: rotate(45deg);
}
.faq-item-clean.active .faq-answer-clean {
    /* Die Höhe wird per JS gesetzt, wir können aber ein Padding animieren */
}

/* New CSS for the Three Steps Widget */
.goldschmidt-three-steps-widget .main-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 2.2em;
    color: #1a1a1a;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    font-weight: 700;
}

.goldschmidt-three-steps-widget .steps {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.goldschmidt-three-steps-widget .step {
    background-color: #fff;
    border-radius: 16px;
    padding: 2rem;
    max-width: 33%;
    flex: 1 1 280px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    transition: transform .3s ease;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.goldschmidt-three-steps-widget .step:hover {
    transform: translateY(-5px);
}

.goldschmidt-three-steps-widget .step-number {
    width: 35px;
    height: 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0 auto 1.2rem;
}

.goldschmidt-three-steps-widget .step h3 {
    color: #0f172a;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-align: center; /* Added for alignment */
}

.goldschmidt-three-steps-widget .step p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center; /* Added for alignment */
}

@media (max-width: 768px) {
    .goldschmidt-three-steps-widget .main-title {
        font-size: 2rem;
    }

    .goldschmidt-three-steps-widget .step {
        max-width: 100%;
    }
}