/* ==========================================================================
   Main Content
   ========================================================================== */

main {
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    background-color: #f4f4f4;
}

main h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: #c03030;
}

.section-content {
    flex: 1 1 400px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 5px solid #c03030;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #c03030;
    border-bottom: 2px solid #c03030;
    padding-bottom: 5px;
}

.section-content p,
.section-content li {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-top: 0;
}

.section-content ul {
    padding-left: 20px;
    margin: 0;
}

/* Links */
.section-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.section-content a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Bild-Container */
.image-container {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

.image-container p {
    font-size: 14px;
    color: #666;
}

/* ==========================================================================
   Highlight
   ========================================================================== */

.section-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.section-highlight .section-content {
    border-left: 8px solid #c03030;
    background-color: #ffffff;
    padding: 20px;
}

.section-highlight h2 {
    font-size: 30px;
    letter-spacing: 0.5px;
}

.section-highlight p {
    font-size: 17px;
}

.section-content strong {
    color: #c03030;
}