#img-silas-horvath {	
	width: 80%;
    max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
}

#img-silas-horvath img {	

    /* Option 1: Reduce brightness slightly */

    /* Option 2: Add a slight sepia tone */
    filter: sepia(0.3);

    /* Option 3: Desaturate the image slightly */
    filter: saturate(0.7);

    /* Option 4: Increase contrast to make the colors less flat */
    /* filter: contrast(1.2); */

    /* Option 5: Reduce opacity for a subtle fade effect */
    /* filter: opacity(0.8); */

    /* Option 6: Add a cool tone using hue rotation */
    /* filter: hue-rotate(210deg); */

    /* Option 7: Make the image grayscale */
    filter: grayscale(0.4) brightness(0.8) contrast(1.2);

    /* Option 8: Apply a soft blur to tone down harshness */
    /* filter: blur(2px); */

    /* Option 9: Combine grayscale and brightness for a subtle adjustment */
    /* filter: grayscale(0.3) brightness(1.1); */

    /* Option 10: Add a slight warm filter using sepia and brightness */
    /* filter: sepia(0.2) brightness(1.1); */

}

/* Alternate posts layout */
.posts-alt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.posts-alt article {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border-bottom: 2px solid #eeeeee;
    padding: 1.5rem 0; /* Added extra padding for better spacing */
}

.posts-alt article:last-child {
    border-bottom: none;
}

.posts-alt article header {
    flex: 1;
    text-align: left;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem; /* Increased space between header and content */
}

.posts-alt article .content {
    flex: 2;
    display: flex;
    flex-direction: row;
    gap: 2rem; /* Increased spacing between image and text */
    align-items: flex-start;
    text-align: left;
}

.posts-alt article .content .optional-image {
    width: 25%; /* Keeps the image smaller and aligned */
    max-width: 180px; /* Slightly larger max width for the image */
    height: auto;
    flex-shrink: 0;
    border-radius: 8px;
    margin-left: auto; /* Moves the image completely to the right */
}

.posts-alt article .content p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.75;
    margin-right: 2rem; /* Adds space between the text and image */
}

@media screen and (max-width: 980px) {
    .posts-alt article {
        flex-direction: column;
        text-align: left;
    }

    .posts-alt article header {
        margin-bottom: 1rem;
    }

    .posts-alt article .content {
        flex-direction: column;
    }

    .posts-alt article .content .optional-image {
        width: 100%; /* Stretches the image for better visibility */
        max-width: none;
        margin: 1rem 0; /* Adds spacing around the image */
    }

    .posts-alt article .content p {
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width: 736px) {
    .posts-alt article {
        padding: 1rem 0;
    }

    .posts-alt article header {
        font-size: 1.25rem;
    }

    .posts-alt article .content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .posts-alt article .content .optional-image {
        margin-left: 0; /* Centers the image on mobile */
    }
}


/* Generelle Listenstile */
ul, ol {
    padding-left: 20px; /* Abstand nach links */
    margin-bottom: 20px; /* Abstand nach unten */
}

ul li, ol li {
    margin-bottom: 10px; /* Abstand zwischen den Listenelementen */
    font-size: 1rem; /* Schriftgröße */
    line-height: 1.5; /* Zeilenhöhe */
    font-weight: normal; /* Standard Gewicht für Listenelemente */
}

/* Stil für geordnete Listen (ol) */
ol {
    list-style-type: decimal; /* Nummerierte Liste */
}

/* Stil für ungeordnete Listen (ul) */
ul {
    list-style-type: disc; /* Standard Punkt */
}

/* Sicherstellen, dass die Texte und Überschriften linksbündig sind */
.posts article header {
    text-align: left; /* Überschrift linksbündig */
}

/* Mobile Anpassung für Listen */
@media screen and (max-width: 980px) {
    ul, ol {
        padding-left: 15px; /* Weniger Abstand auf mobilen Geräten */
    }
}

/* Spezifische Liste für die Erwartungen */
.expectations ul {
    list-style-type: none; /* Keine Standard-Punkte */
    padding: 0; /* Entfernt Standard-Padding */
}

.expectations ul li {
    margin-bottom: 15px; /* Abstand zwischen den Listenelementen */
}

.expectations ul li strong {
    font-weight: bold; /* Stärkere Hervorhebung der Titel */
}

/* Zentrierung der Erwartungen-Liste */
.expectations {
    display: flex;
    flex-direction: column;
    align-items: center; /* Listenelemente zentrieren */
    text-align: left; /* Text in den Listenelementen linksbündig */
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
}



/* Allgemeine Stilsetzung für das "Was Sie erwarten können"-Section */
.expectations-new {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

/* Stil für die Überschrift */
.expectations-new h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

/* Liste der Erwartungen */
.expectations-new ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* Eine Spalte für jedes Listenelement */
    gap: 20px; /* Abstand zwischen den Listenelementen */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Stil für jedes Listenelement */
.expectations-new li {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    padding-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%; /* Verhindert Überlappungen, jedes Element bekommt die volle Breite */
}

/* Hover-Effekt für Listenelemente */
.expectations-new li:hover {
    transform: translateY(-5px); /* Leichter Hover-Effekt */
}

/* Stil für das Icon */
.expectations-new .icon {
    width: 80px; /* Etwas größer */
    height: 80px; /* Etwas größer */
    margin: 25px; /* Mehr Abstand zwischen Icon und Text */
    margin-right: 30px; /* Mehr Abstand zwischen Icon und Text */
    margin-left: 30px; /* Mehr Abstand zwischen Icon und Text */
    /* padding-left: 20px; */
}

/* Bild (Icon) im Listeneintrag */
.expectations-new .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 200px;
}

/* Inhalt der Listeneinträge (Überschrift und Beschreibung) */
.expectations-new .content {
    flex: 1; /* Nimmt den verbleibenden Platz ein */
    display: flex;
    flex-direction: column;
    padding-right: 30px; /* Mehr Abstand nach rechts */
}

.expectations-new .content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #555;
}

.expectations-new .content p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: justify;
}

/* Mobile Anpassungen */
@media screen and (max-width: 980px) {
    .expectations-new ul {
        max-width: 100%; /* Volle Breite auf Tablets */
    }

    .expectations-new li {
        padding: 15px;
    }

    .expectations-new .icon {
        width: 45px;
        height: 45px;
        margin-right: 20px;
        margin-left: 20px; /* Mehr Abstand zwischen Icon und Text */
    }

    .expectations-new .content h4 {
        font-size: 1.1rem;
    }

    .expectations-new .content p {
        font-size: 0.9rem;
    }
}

/* Anpassungen für kleine Bildschirme (Mobile) */
@media screen and (max-width: 736px) {
    .expectations-new ul {
        max-width: 100%;
    }

    .expectations-new li {
        padding: 15px;
    }

    .expectations-new .icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
        margin-left: 15px;
    }

    .expectations-new .content h4 {
        font-size: 1.1rem;
    }

    .expectations-new .content p {
        font-size: 0.9rem;
    }
}



/* Stil für den Abschnitt "So können Sie sich eine Trauerfeier vorstellen" */
.funeral-steps {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

/* Überschrift für den Abschnitt */
.funeral-steps h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

/* Liste der Schritte */
.funeral-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Stil für jedes Listenelement (Schritt) */
.funeral-steps li {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
}

/* Hover-Effekt für die Schritte */
.funeral-steps li:hover {
    transform: translateY(-5px); /* Leichter Hover-Effekt */
}

/* Stil für das Icon in jedem Schritt */
.funeral-steps .icon {
    width: 100px; /* Bildgröße */
    height: 100px;
    margin-right: 30px; /* Abstand zum Text */
    padding-left: 20px; /* Abstand links */
    order: 0; /* Sorgt dafür, dass das Bild auf Desktop an erster Stelle bleibt */
}

.silas-about-me .icon {
    width: 180px; /* Bildgröße */
    height: 180px;
}

/* Bild (Icon) im Listeneintrag */
.funeral-steps .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10%; /* Rundes Icon */
}

/* Inhalt der Listeneinträge (Überschrift und Beschreibung) */
.funeral-steps .content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.funeral-steps .content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #555;
}

.funeral-steps .content p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0px 10px;
    text-align: justify;
}

/* Mobile Anpassungen */
@media screen and (max-width: 980px) {
    .funeral-steps ul {
        max-width: 100%;
    }

    .funeral-steps li {
        padding: 15px;
        flex-direction: column; /* Stapeln der Inhalte auf kleineren Geräten */
        text-align: center; /* Zentriert alles auf mobilen Geräten */
    }

    .funeral-steps .icon {
        width: 80px;
        height: 80px;
        margin-right: 0; /* Kein Abstand mehr zwischen Bild und Text auf mobilen Geräten */
        margin-bottom: 15px; /* Fügt Abstand zwischen Bild und Titel auf mobilen Geräten hinzu */
        order: -1; /* Setzt das Bild über den Text */
    }

    .silas-about-me .icon {
        width: 180px; /* Bildgröße */
        height: 180px;
    }

    .funeral-steps .content h4 {
        font-size: 1.1rem;
    }

    .funeral-steps .content p {
        font-size: 0.9rem;
    }
}

/* Anpassungen für kleinere Bildschirme (Mobile) */
@media screen and (max-width: 736px) {
    .funeral-steps ul {
        max-width: 100%;
    }

    .funeral-steps li {
        padding: 15px;
    }

    .funeral-steps .icon {
        width: 70px;
        height: 70px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .silas-about-me .icon {
        width: 180px; /* Bildgröße */
        height: 180px;
    }

    .funeral-steps .content h4 {
        font-size: 1.1rem;
    }

    .funeral-steps .content p {
        font-size: 0.9rem;
    }
}


.contact-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .contact-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
  }
  
  .contact-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px auto;
  }
  
  .contact-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px; /* Ensures the blocks do not stretch too wide */
    margin: 0 auto;
    padding-bottom: 4rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 380px; /* Ensures consistency across all items */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-item .content{
    margin: auto;
    text-align: center;
  }
  
  .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }
  
  .contact-item .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 25px;    
  }
  
  .contact-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .contact-item .content h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
  }
  
  .contact-item .content p {
    margin: 0;
    font-size: 1rem;
    color: #555;
  }
  
  .contact-item .content p a {
    /* color: #007BFF; */
    text-decoration: none;
    color: #333;
  }
  
  .contact-item .content p a:hover {
    text-decoration: underline;
    color: #333 !important;
  }
  
  /* Mobile Styles */
  @media screen and (max-width: 768px) {
    .contact-blocks {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-item {
      max-width: 100%;
    }
  }
  