#devotion {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    background: #f8fafc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    justify-content: center;
    align-items: stretch;
}

#devotion > h1 {
    width: 100%;
    text-align: center;
    color: #1e40af;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#devotion > div {
    flex: 1 1 220px;
    max-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#devotion > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

#devotion img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#devotion h2 {
    color: #1e40af;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: #f1f5f9;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(30, 64, 175, 0.1);
    width: 100%;
}

#devotion p {
    color: #4b5563;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}
[id="my God"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 40px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

[id="my God"] h1 {
    color: #1e40af;
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

[id="my God"] p {
    color: #2563eb;
    font-style: italic;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    max-width: 750px;
    margin: 0;
    font-weight: 500;
}
.waters {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem;
    background-color: #fbf9f5; /* Soft, warm neutral background */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.waters img {
    width: 45%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.waters-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.waters h2 {
    color: #1e3a8a; /* Rich Professional Blue */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    position: relative;
}

/* Elegant accent underline for the heading */
.waters h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #3b82f6;
    margin-top: 8px;
    border-radius: 2px;
}

.waters p {
    color: #5c4033; /* Warm Brown Text */
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive layout for mobile and tablet screens */
@media (max-width: 768px) {
    .waters {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .waters img {
        width: 100%;
    }
}
.holy.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background-color: #f8fafc; /* Clean, soft neutral background */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.holy.images h1 {
    width: 100%;
    text-align: center;
    color: #1d4ed8; /* Vibrant Professional Blue */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.holy.images img {
    flex: 0 0 calc(33.333% - 17px); /* Forces exactly 3 items per line accounting for the gap */
    height: 320px; /* Uniform height for a grid look */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Smooth hover effect for a premium feel */
.holy.images img:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(29, 78, 216, 0.15);
}

/* Responsive adjustment for mobile and tablet screens */
@media (max-width: 900px) {
    .holy.images img {
        flex: 0 0 calc(50% - 15px); /* 2 images per line on tablets */
    }
}

@media (max-width: 600px) {
    .holy.images img {
        flex: 0 0 100%; /* 1 image per line on mobile phones */
        height: 280px;
    }
}
.prayer-schedule {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: #fdfbf7; /* Warm, soft cream background */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.prayer-schedule h2 {
    color: #5c4033; /* Rich Franciscan Brown */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
}

/* Elegant accent underline for the heading */
.prayer-schedule h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #8b5a2b; /* Warm earth accent */
    margin: 8px auto 0 auto;
    border-radius: 2px;
}

.prayer-schedule table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.prayer-schedule th {
    background-color: #5c4033; /* Franciscan Brown Header */
    color: #ffffff;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.prayer-schedule td {
    padding: 18px;
    color: #4a3525; /* Deep brown text for readability */
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid #f2eae1;
}

.prayer-schedule tr:last-child td {
    border-bottom: none;
}

/* Smooth hover effect on table rows */
.prayer-schedule tr:hover td {
    background-color: #fcf8f4;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 600px) {
    .prayer-schedule {
        padding: 1.5rem;
    }
    .prayer-schedule th, .prayer-schedule td {
        padding: 12px 8px;
        font-size: 0.95rem;
    }
}