    html {
        scroll-behavior: smooth;
    }
    
    .archive-title {
        margin-bottom: .5rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--bs-heading-color);
        font-size: 1.5em;
    }
    
    section {
        scroll-margin-top: 20px;
    }
    
    header {
        background: #333;
    }
    
    #nav-logo {
        height: 35px;
        max-height: 35px;
        margin-top: -5px;
        margin-bottom: -5px;
        padding-right: 1em
    }
    
    .header-image {
        max-height: 200px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }
    
    .calendar-month-view iframe,
    .calendar-agenda-view iframe {
        width: 100%;
        height: 400px;
        max-height: 500px;
    }
    
    @media (max-width: 768px) {
        .calendar-month-view {
            display: none;
        }
        .calendar-agenda-view {
            display: block;
        }
        .calendar-agenda-view iframe {
            height: 350px;
            max-height: 400px;
        }
        section {
            scroll-margin-top: 210px;
        }
        .navbar .nav-item.dropdown .dropdown-toggle {
            cursor: pointer;
        }
    }
    
    @media (min-width: 769px) {
        .calendar-agenda-view {
            display: none;
        }
        .calendar-month-view {
            display: block;
        }
        .navbar .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            transition-delay: 300ms;
        }
    }
    
    .sermon {
        padding: 8px 0;
        border-bottom: 1px solid #ddd;
    }
    
    .sermon a {
        text-decoration: none;
    }
    
    .sermon a:hover {
        text-decoration: underline;
    }
    
    .sermon .dateline {
        font-size: 0.9rem;
        color: #6c757d;
        display: block;
        margin-top: 2px;
    }
    
    .sermon i {
        margin-left: 5px;
    }
    
    .church-service-section {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    
    .parallax-img {
        position: fixed;
        top: 125px;
        left: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        z-index: -1;
    }
    
    @media (min-width: 1200px) {
        .church-service-section {
            height: 400px;
        }
    }
    
    @media (max-width: 768px) {
        .parallax-img {
            position: relative;
            top: 0;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .church-service-section {
            max-height: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: auto;
        }
    }
    
    .bg-light {
        background-color: #f1f1f1 !important;
    }
    
    #our-pastor p>img:only-child {
        display: block;
        margin: 10px auto;
        max-width: 100%;
        border-radius: var(--bs-border-radius) !important;
    }