
        body,
        html {
            height: 100%;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        .hero {
            background: url('assets/img/church.jpg') center center / cover no-repeat;
            position: relative;
            min-height: 100vh;
            color: #fff;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            padding: 80px 15px 2rem 15px;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        p {
            max-width: 900px;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .gallery,
        .history-section {
            background: #f8f9fa;
            padding: 60px 15px;
        }

        .gallery h2,
        .history-section h2,
        .map-section h2 {
            text-align: center;
            margin-bottom: 40px;
            font-weight: bold;
        }

        .gallery img,
        .history-card {
            transition: transform 0.3s;
        }

        .gallery img:hover,
        .history-card:hover {
            transform: scale(1.05);
        }

        .map-section {
            padding: 60px 15px;
            background: #fff;
        }

        .map-container {
            position: relative;
            overflow: hidden;
            padding-top: 56.25%;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: none;
            width: 50px;
            height: 50px;
            background: black;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 28px;
            line-height: 50px;
            text-align: center;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        #backToTop:hover {
            transform: scale(1.1);
        }

        .timeline {
            position: relative;
            padding-left: 40px;
        }

        .timeline:before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #dee2e6;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }

        .timeline-icon {
            position: absolute;
            left: 12px;
            top: 0;
            width: 16px;
            height: 16px;
            background: #28a745;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        .timeline-content {
            margin-left: 40px;
        }

        .timeline-content h5 {
            font-weight: 700;
            margin-bottom: 10px;
        }

        .timeline-content p {
            margin: 0;
            font-size: 0.95rem;
            color: #555;
        }

        @media (max-width: 576px) {
            .timeline {
                padding-left: 20px;
            }

            .timeline:before {
                left: 10px;
            }

            .timeline-icon {
                left: 4px;
            }

            .timeline-content {
                margin-left: 30px;
            }
        }


        @media (max-width:768px) {
            h1 {
                font-size: 2rem;
            }
        }
