/* General styles for the introduction container */
.introduction-container {
    /* font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

/* Styling for the headline */
.introduction-container h5 {
    font-size: 1.5em;
    text-align: center;
    color: #2c3e50;
    /* margin-bottom: 20px; */
    font-weight: bold;
}

/* Styling for the first sentence */
.introduction-first-sentence {
    font-size: 1.2em;
    font-weight: 500;
    margin-top: 2em !important;
    margin-bottom: 1em !important;
}

/* Styling for the second sentence */
.introduction-second-sentence {
    font-size: 1.1em;
    /* margin-bottom: 20px; */
    margin-bottom: 1em !important;
}

/* Styling for the list block */
.introduction-block-with-ul {
    /* margin-bottom: 20px; */
    /* padding-top: 1em; */
    /* margin-bottom: 1em; */
}

.introduction_ul {
    list-style-type: disc !important; /* Adds bullet points */
    padding-left: 2em !important; /* Adds indentation for the list */
    margin-top: 10px;
    margin-bottom: 10px;
}

.introduction_ul li {
    margin-bottom: 5px; /* Space between bullet points */
}

/* Styling for the bold prelast sentence */
.introduction-prelast-sentence-bold {
    font-size: 1.1em;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
}

/* Styling for the last sentence */
.introduction-last-sentence {
    font-size: 1em;
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
}