/*=============== HERO SECTION ===============*/
.acute-hero {
    margin-top: 3.5rem;
    padding: 4rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #592131, #8b3a4b);
}

.acute-hero__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.acute-hero__text {
    font-size: 1.2rem;
    color: #fff;
}

.acute-hero__text a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.acute-hero__text a:hover {
    text-decoration: underline;
}

/*=============== INTRODUCTION SECTION ===============*/
.acute-intro {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #ffffff;
}

.acute-intro p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/*=============== STEPS SECTION ===============*/
.acute-steps {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #F1AD48, #D98A2A);

}

.acute-steps__title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.acute-steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.acute-step {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.6);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.acute-step__icon {
    font-size: 3rem;
    color: #592131;
    margin-bottom: 1rem;
}

.acute-step__title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.acute-step__text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.acute-step__text a {
    color: #592131;
    font-weight: bold;
    text-decoration: none;
}

.acute-step__text a:hover {
    text-decoration: underline;
}

/*=============== RESPONSIVE DESIGN ===============*/
@media screen and (max-width: 768px) {
    .acute-hero {
        padding: 3rem 1rem;
    }

    .acute-hero__title {
        font-size: 2rem;
    }

    .acute-hero__text {
        font-size: 1rem;
    }

    .acute-steps__grid {
        grid-template-columns: 1fr;
    }

    .acute-step {
        text-align: left;
        padding: 1.5rem;
    }
}

/*=============== DOCUMENTS SECTION ===============*/
.documents-section {
    padding: 3rem 1rem;
    background-color: #fff;
}

.documents-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #333;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #fff;
    color: #333;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accordion-header i {
    font-size: 1.2rem;
    color: #592131;
}

.accordion-header:hover {
    background-color: #f0f8ff;
}

.accordion-content {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    display: none;
}

.accordion-content.active {
    display: block;
}

/* Anpassung für Schritt 5 - Notiz */
.step-with-note {
    position: relative;
}

.step-note {
    background-color: rgba(156, 41, 53, 0.1);
    color: #9C2935;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.8rem;
    border-left: 4px solid #9C2935;
    margin-top: 1rem;
    border-radius: 4px;
}

/* Hervorhebung der geänderten Tage */
.updated-text {
    font-weight: bold;
    color: #9C2935;
}


/*=============== RESPONSIVE DESIGN ===============*/
@media screen and (max-width: 768px) {
    .accordion-header {
        font-size: 1rem;
    }

    .accordion-content {
        font-size: 0.9rem;
    }

    .step-note {
        text-align: center;
    }
}