        /* ========================================
           PRAYER MINISTRY SECTION
        ======================================== */

        .prayer-ministry-section {
            --prayer-navy: #13233f;
            --prayer-blue: #244d75;
            --prayer-gold: #c99435;
            --prayer-gold-light: #f3d797;
            --prayer-cream: #fffaf0;
            --prayer-soft: #f7f2e8;
            --prayer-text: #3c4655;

            position: relative;
            overflow: hidden;
            padding: 100px 0;
            background:
                radial-gradient(circle at 10% 15%,
                rgba(201, 148, 53, 0.16),
                transparent 28%),

                radial-gradient(circle at 90% 75%,
                rgba(36, 77, 117, 0.14),
                transparent 32%),

                linear-gradient(
                135deg,
                #fffdf8 0%,
                #f8f2e7 48%,
                #f2eee6 100%
                );

            font-family: "Segoe UI", Arial, sans-serif;
            color: var(--prayer-text);
            isolation: isolate;
        }

        .prayer-ministry-section *,
        .prayer-ministry-section *::before,
        .prayer-ministry-section *::after {
            box-sizing: border-box;
        }

        /* Decorative background elements */

        .prayer-ministry-section::before {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            top: -190px;
            left: -140px;
            border-radius: 50%;
            border: 55px solid rgba(201, 148, 53, 0.07);
            animation: prayerRotate 20s linear infinite;
            z-index: -1;
        }

        .prayer-ministry-section::after {
            content: "";
            position: absolute;
            width: 340px;
            height: 340px;
            right: -140px;
            bottom: -130px;
            border-radius: 45% 55% 65% 35%;
            background: linear-gradient(
                145deg,
                rgba(36, 77, 117, 0.08),
                rgba(201, 148, 53, 0.1)
            );
            animation: prayerFloat 8s ease-in-out infinite;
            z-index: -1;
        }

        .prayer-light-orb {
            position: absolute;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(201, 148, 53, 0.55);
            box-shadow:
                0 0 18px rgba(201, 148, 53, 0.65),
                0 0 40px rgba(201, 148, 53, 0.3);
            animation: prayerOrb 7s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }

        .prayer-orb-one {
            top: 14%;
            left: 7%;
        }

        .prayer-orb-two {
            top: 42%;
            right: 8%;
            width: 12px;
            height: 12px;
            animation-delay: 2s;
        }

        .prayer-orb-three {
            bottom: 12%;
            left: 12%;
            width: 10px;
            height: 10px;
            animation-delay: 4s;
        }

        /* Section heading */

        .prayer-heading-wrapper {
            max-width: 940px;
            margin: 0 auto 45px;
            text-align: center;
            position: relative;
        }

        .prayer-small-title {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 14px;
            padding: 9px 20px;
            border: 1px solid rgba(201, 148, 53, 0.45);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.78);
            box-shadow:
                0 10px 30px rgba(19, 35, 63, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            color: #9b6a1b;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.6px;
            text-transform: uppercase;
        }

        .prayer-section-title {
            margin: 0;
            color: var(--prayer-navy);
            font-size: clamp(36px, 5vw, 66px);
            font-weight: 900;
            line-height: 1.14;
            letter-spacing: -1.5px;
        }

        .prayer-section-title span {
            position: relative;
            display: inline-block;
            color: var(--prayer-gold);
        }

        .prayer-section-title span::after {
            content: "";
            position: absolute;
            left: 5%;
            right: 5%;
            bottom: -7px;
            height: 5px;
            border-radius: 20px;
            background: linear-gradient(
                90deg,
                transparent,
                var(--prayer-gold),
                transparent
            );
        }

        .prayer-title-line {
            width: 90px;
            height: 4px;
            margin: 28px auto 0;
            border-radius: 20px;
            background: linear-gradient(
                90deg,
                var(--prayer-blue),
                var(--prayer-gold),
                var(--prayer-blue)
            );
            box-shadow: 0 3px 12px rgba(201, 148, 53, 0.35);
        }

        /* Intro bordered graphical box */

        .prayer-intro-box {
            position: relative;
            overflow: hidden;
            max-width: 1100px;
            margin: 0 auto 55px;
            padding: 35px 40px;
            border: 1px solid rgba(201, 148, 53, 0.55);
            border-radius: 28px;
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.96),
                    rgba(255, 250, 240, 0.88)
                );
            box-shadow:
                0 22px 55px rgba(19, 35, 63, 0.1),
                inset 0 1px 0 #ffffff;
        }

        .prayer-intro-box::before {
            content: "";
            position: absolute;
            width: 190px;
            height: 190px;
            right: -60px;
            top: -80px;
            border-radius: 50%;
            background: radial-gradient(
                circle,
                rgba(201, 148, 53, 0.22),
                transparent 70%
            );
        }

        .prayer-intro-box::after {
            content: "";
            position: absolute;
            width: 160px;
            height: 160px;
            left: -70px;
            bottom: -90px;
            border-radius: 50%;
            border: 28px solid rgba(36, 77, 117, 0.06);
        }

        .prayer-intro-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            flex-shrink: 0;
            border-radius: 20px;
            background: linear-gradient(
                145deg,
                var(--prayer-navy),
                var(--prayer-blue)
            );
            color: var(--prayer-gold-light);
            font-size: 29px;
            box-shadow:
                0 15px 30px rgba(19, 35, 63, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.22);
        }

        .prayer-intro-title {
            margin-bottom: 10px;
            color: var(--prayer-navy);
            font-size: 25px;
            font-weight: 850;
            line-height: 1.4;
        }

        .prayer-intro-content {
            margin-bottom: 0;
            color: #566170;
            font-size: 17px;
            line-height: 1.9;
        }

        /* Four image cards */

        .prayer-photo-grid {
            margin-bottom: 65px;
        }

        .prayer-photo-card {
            position: relative;
            height: 390px;
            overflow: hidden;
            border: 7px solid rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            background: #ffffff;
            box-shadow:
                0 18px 45px rgba(19, 35, 63, 0.18),
                0 0 0 1px rgba(201, 148, 53, 0.35);
            transition:
                transform 0.45s ease,
                box-shadow 0.45s ease;
        }

        .prayer-photo-card::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 2;
            background:
                linear-gradient(
                    to top,
                    rgba(7, 18, 35, 0.94) 0%,
                    rgba(10, 25, 46, 0.42) 48%,
                    rgba(10, 25, 46, 0.05) 78%
                );
            transition: background 0.45s ease;
        }

        .prayer-photo-card::after {
            content: "";
            position: absolute;
            inset: 10px;
            z-index: 3;
            border: 1px solid rgba(243, 215, 151, 0.55);
            border-radius: 17px;
            pointer-events: none;
        }

        .prayer-photo-card:hover {
            transform: translateY(-12px);
            box-shadow:
                0 30px 60px rgba(19, 35, 63, 0.25),
                0 0 30px rgba(201, 148, 53, 0.2);
        }

        .prayer-photo-card:hover::before {
            background:
                linear-gradient(
                    to top,
                    rgba(7, 18, 35, 0.96) 0%,
                    rgba(10, 25, 46, 0.35) 52%,
                    transparent 85%
                );
        }

        .prayer-photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .prayer-photo-card:hover img {
            transform: scale(1.08);
        }

        .prayer-photo-number {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 4;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            background: rgba(19, 35, 63, 0.76);
            backdrop-filter: blur(10px);
            color: var(--prayer-gold-light);
            font-size: 15px;
            font-weight: 800;
        }

        .prayer-photo-content {
            position: absolute;
            right: 26px;
            bottom: 26px;
            left: 26px;
            z-index: 4;
            color: #ffffff;
        }

        .prayer-photo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            margin-bottom: 13px;
            border-radius: 12px;
            background: linear-gradient(
                145deg,
                var(--prayer-gold),
                #e5bd67
            );
            color: var(--prayer-navy);
            font-size: 18px;
            box-shadow: 0 9px 20px rgba(0, 0, 0, 0.22);
        }

        .prayer-photo-title {
            margin-bottom: 8px;
            font-size: 22px;
            font-weight: 850;
        }

        .prayer-photo-text {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.82);
            font-size: 14px;
            line-height: 1.7;
        }

        /* Main content image and text */

        .prayer-content-wrapper {
            margin-bottom: 65px;
        }

        .prayer-main-image-box {
            position: relative;
            min-height: 575px;
            overflow: hidden;
            padding: 10px;
            border-radius: 30px;
            background: linear-gradient(
                145deg,
                #ffffff,
                #e9dfcc
            );
            box-shadow:
                0 24px 60px rgba(19, 35, 63, 0.2),
                0 0 0 1px rgba(201, 148, 53, 0.38);
        }

        .prayer-main-image-box img {
            width: 100%;
            height: 555px;
            border-radius: 22px;
            object-fit: cover;
        }

        .prayer-main-image-overlay {
            position: absolute;
            right: 32px;
            bottom: 32px;
            left: 32px;
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, 0.32);
            border-radius: 18px;
            background: rgba(11, 27, 50, 0.82);
            backdrop-filter: blur(12px);
            color: #ffffff;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

        .prayer-main-image-overlay i {
            margin-right: 9px;
            color: var(--prayer-gold-light);
        }

        .prayer-main-image-overlay p {
            margin: 0;
            font-size: 16px;
            font-weight: 650;
            line-height: 1.7;
        }

        .prayer-content-card {
            height: 100%;
            padding: 42px;
            border: 1px solid rgba(201, 148, 53, 0.38);
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.9);
            box-shadow:
                0 22px 55px rgba(19, 35, 63, 0.1),
                inset 0 1px 0 #ffffff;
        }

        .prayer-content-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            padding: 8px 15px;
            border-radius: 8px;
            background: rgba(201, 148, 53, 0.13);
            color: #93631b;
            font-size: 13px;
            font-weight: 850;
            letter-spacing: 1px;
        }

        .prayer-content-title {
            margin-bottom: 20px;
            color: var(--prayer-navy);
            font-size: clamp(29px, 3vw, 43px);
            font-weight: 900;
            line-height: 1.3;
        }

        .prayer-content-card p {
            margin-bottom: 18px;
            color: #566170;
            font-size: 16px;
            line-height: 1.9;
        }

        .prayer-feature-list {
            margin: 28px 0 0;
            padding: 0;
            list-style: none;
        }

        .prayer-feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
            padding: 15px 17px;
            border: 1px solid rgba(36, 77, 117, 0.1);
            border-radius: 14px;
            background: linear-gradient(
                135deg,
                rgba(247, 242, 232, 0.85),
                rgba(255, 255, 255, 0.9)
            );
            transition:
                transform 0.35s ease,
                border-color 0.35s ease;
        }

        .prayer-feature-list li:hover {
            transform: translateX(7px);
            border-color: rgba(201, 148, 53, 0.48);
        }

        .prayer-feature-list i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            flex-shrink: 0;
            border-radius: 10px;
            background: var(--prayer-navy);
            color: var(--prayer-gold-light);
            font-size: 14px;
        }

        .prayer-feature-list span {
            color: #485363;
            font-size: 15px;
            font-weight: 650;
            line-height: 1.7;
        }

        /* Bible verse cards */

        .prayer-verse-area {
            position: relative;
            overflow: hidden;
            padding: 52px;
            border-radius: 34px;
            background:
                linear-gradient(
                    135deg,
                    #11223e 0%,
                    #19375b 54%,
                    #11223e 100%
                );
            box-shadow: 0 30px 70px rgba(19, 35, 63, 0.3);
        }

        .prayer-verse-area::before {
            content: "";
            position: absolute;
            width: 250px;
            height: 250px;
            top: -110px;
            right: -80px;
            border-radius: 50%;
            background: radial-gradient(
                circle,
                rgba(243, 215, 151, 0.18),
                transparent 70%
            );
        }

        .prayer-verse-area::after {
            content: "✦";
            position: absolute;
            left: 35px;
            bottom: 10px;
            color: rgba(243, 215, 151, 0.08);
            font-size: 150px;
            line-height: 1;
        }

        .prayer-verse-heading {
            position: relative;
            z-index: 2;
            max-width: 760px;
            margin: 0 auto 36px;
            text-align: center;
        }

        .prayer-verse-heading i {
            margin-bottom: 16px;
            color: var(--prayer-gold-light);
            font-size: 36px;
        }

        .prayer-verse-heading h3 {
            margin-bottom: 10px;
            color: #ffffff;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 850;
        }

        .prayer-verse-heading p {
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            line-height: 1.8;
        }

        .prayer-verse-card {
            position: relative;
            z-index: 2;
            height: 100%;
            padding: 30px;
            border: 1px solid rgba(243, 215, 151, 0.25);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.075);
            backdrop-filter: blur(14px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
            transition:
                transform 0.4s ease,
                background 0.4s ease;
        }

        .prayer-verse-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.11);
        }

        .prayer-quote-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            margin-bottom: 19px;
            border-radius: 14px;
            background: linear-gradient(
                145deg,
                var(--prayer-gold),
                var(--prayer-gold-light)
            );
            color: var(--prayer-navy);
            font-size: 19px;
        }

        .prayer-verse-text {
            margin-bottom: 18px;
            color: #ffffff;
            font-size: 17px;
            font-weight: 600;
            line-height: 1.9;
        }

        .prayer-verse-reference {
            display: inline-block;
            padding-top: 13px;
            border-top: 1px solid rgba(243, 215, 151, 0.3);
            color: var(--prayer-gold-light);
            font-size: 14px;
            font-weight: 800;
        }

        /* Animation keyframes */

        @keyframes prayerRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes prayerFloat {
            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-22px) rotate(8deg);
            }
        }

        @keyframes prayerOrb {
            0%,
            100% {
                transform: translateY(0) scale(1);
                opacity: 0.45;
            }

            50% {
                transform: translateY(-35px) scale(1.3);
                opacity: 0.95;
            }
        }

        /* Responsive design */

        @media (max-width: 991.98px) {
            .prayer-ministry-section {
                padding: 80px 0;
            }

            .prayer-photo-card {
                height: 360px;
            }

            .prayer-content-card {
                padding: 34px;
            }

            .prayer-verse-area {
                padding: 42px 28px;
            }
        }

        @media (max-width: 767.98px) {
            .prayer-ministry-section {
                padding: 65px 0;
            }

            .prayer-section-title {
                letter-spacing: -0.5px;
            }

            .prayer-intro-box {
                padding: 28px 22px;
                border-radius: 22px;
            }

            .prayer-intro-icon {
                width: 62px;
                height: 62px;
                margin: 0 auto 18px;
            }

            .prayer-intro-title,
            .prayer-intro-content {
                text-align: center;
            }

            .prayer-photo-card {
                height: 430px;
            }

            .prayer-main-image-box {
                min-height: auto;
            }

            .prayer-main-image-box img {
                height: 470px;
            }

            .prayer-main-image-overlay {
                right: 22px;
                bottom: 22px;
                left: 22px;
            }

            .prayer-content-card {
                padding: 28px 22px;
                border-radius: 23px;
            }

            .prayer-verse-area {
                padding: 36px 20px;
                border-radius: 25px;
            }

            .prayer-verse-card {
                padding: 24px;
            }
        }

        @media (max-width: 575.98px) {
            .prayer-ministry-section {
                padding: 55px 0;
            }

            .prayer-small-title {
                padding: 8px 14px;
                font-size: 11px;
            }

            .prayer-photo-card {
                height: 390px;
            }

            .prayer-photo-content {
                right: 22px;
                bottom: 22px;
                left: 22px;
            }

            .prayer-main-image-box img {
                height: 410px;
            }

            .prayer-main-image-overlay p {
                font-size: 14px;
            }

            .prayer-content-title {
                font-size: 29px;
            }

            .prayer-content-card p {
                font-size: 15px;
            }
        }

        /* Reduced motion accessibility */

        @media (prefers-reduced-motion: reduce) {
            .prayer-ministry-section *,
            .prayer-ministry-section *::before,
            .prayer-ministry-section *::after {
                animation: none !important;
                transition: none !important;
            }
        }