
        :root {
            --deep-navy: #0A1A3A;
            --sacred-gold: #D4AF37;
            --glowing-gold: #F4D03F;
            --pure-white: #FFFFFF;
            --light-gray: #F8F9FA;
            --earth-green: #2E8B57;
            --soft-maroon: #8B0000;
            --glass-blue: rgba(74, 144, 226, 0.85);
            --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
            --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
            --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--light-gray);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .scripture-font {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
        }

        /* Header - identical to index.html */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 1rem 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-soft);
        }

        header.scrolled {
            padding: 0.6rem 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-strong);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-image {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .logo-container:hover .logo-image {
            transform: scale(1.05);
        }

        .logo-text {
            margin-left: 1rem;
        }

        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 0.2rem;
            color: var(--deep-navy);
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 0.9rem;
            color: var(--soft-maroon);
            font-weight: 500;
            letter-spacing: 1px;
        }

        .nav-desktop {
            display: flex;
            align-items: center;
        }

        .nav-desktop ul {
            display: flex;
            list-style: none;
        }

        .nav-desktop li {
            margin-left: 2rem;
            position: relative;
        }

        .nav-desktop a {
            text-decoration: none;
            color: var(--deep-navy);
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-desktop a:hover {
            color: var(--soft-maroon);
        }

        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--sacred-gold);
            transition: width 0.3s ease;
        }

        .nav-desktop a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--deep-navy);
            cursor: pointer;
        }

        /* Ministries Hero */
        .ministries-hero {
            height: 70vh;
            min-height: 500px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 80px;
            background: linear-gradient(rgba(10, 26, 58, 0.85), rgba(10, 26, 58, 0.9)), url('images/logo.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .ministries-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('logo.jpg') center/contain no-repeat;
            opacity: 0.03;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--pure-white);
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            line-height: 1.1;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Ministries Grid */
        .ministries-section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--deep-navy);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--sacred-gold);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 1.5rem auto 0;
        }

        /* Ministries Grid */
        .ministries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .ministry-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            cursor: pointer;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            will-change: transform, opacity, box-shadow;
        }

        .ministry-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .ministry-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: var(--shadow-strong), var(--shadow-glow);
        }

        .ministry-icon-container {
            height: 120px;
            background: linear-gradient(135deg, var(--deep-navy), var(--earth-green));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .ministry-icon {
            font-size: 3.5rem;
            color: var(--sacred-gold);
            z-index: 2;
            transition: all 0.5s ease;
            will-change: transform;
        }

        .ministry-card:hover .ministry-icon {
            transform: rotate(15deg) scale(1.1);
            color: var(--glowing-gold);
        }

        .ministry-icon-container::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
            top: -50px;
            left: -50px;
            z-index: 1;
        }

        .ministry-content {
            padding: 2rem;
            position: relative;
        }

        .ministry-content h3 {
            font-size: 1.6rem;
            color: var(--deep-navy);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ministry-content h3 .arrow {
            color: var(--sacred-gold);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .ministry-card:hover .arrow {
            transform: translateX(10px);
        }

        .ministry-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .ministry-tagline {
            display: none;
            color: var(--earth-green);
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            font-style: italic;
        }

        .ministry-card:hover .ministry-tagline {
            display: block;
            animation: fadeInUp 0.5s ease forwards;
        }

        .ced-highlight {
            position: relative;
            border: 2px solid var(--sacred-gold);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(46, 139, 87, 0.05));
        }

        .ced-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--earth-green);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
        }

        /* Mobile Expand Button */
        .mobile-expand-btn {
            display: none;
            width: 100%;
            padding: 1rem;
            background: var(--deep-navy);
            color: white;
            border: none;
            border-radius: 0 0 20px 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-expand-btn:hover {
            background: var(--soft-maroon);
        }

        /* Social Bar */
        .social-bar {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 999;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem;
            border-radius: 15px;
            box-shadow: var(--shadow-soft);
            display: none;
        }

        .social-bar.visible {
            display: flex;
            animation: slideInRight 0.5s ease;
        }

        .social-icon-bar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--deep-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-icon-bar:hover {
            background: var(--sacred-gold);
            transform: translateX(-5px);
        }

        /* Footer - identical to index.html */
        footer {
            background: var(--deep-navy);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--sacred-gold);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--sacred-gold);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .ministries-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 2rem;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .social-bar {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-desktop {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .ministries-section {
                padding: 4rem 1.5rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .ministries-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .ministry-card:hover {
                transform: none;
            }
            
            .mobile-expand-btn {
                display: block;
            }
            
            .ministry-tagline {
                display: block;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
                border-top: none;
                margin-top: 0;
                padding-top: 0;
            }
            
            .ministry-card.expanded .ministry-tagline {
                max-height: 100px;
                margin-top: 1rem;
                padding-top: 1rem;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            .ministry-card.expanded {
                transform: scale(1.02);
                box-shadow: var(--shadow-strong);
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .logo-text h1 {
                font-size: 1.4rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px) translateY(-50%);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(-50%);
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        /* Mobile Menu (same as index.html) */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            z-index: 2000;
            padding: 2rem;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--deep-navy);
            cursor: pointer;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav li {
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mobile-nav a {
            display: block;
            padding: 1rem 0;
            font-size: 1.1rem;
            color: var(--deep-navy);
            text-decoration: none;
            font-weight: 500;
        }

        /* Reduce motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Add these styles to your existing CSS */

/* Make ministry title links look nice */
.ministry-content h3 a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ministry-content h3 a:hover {
    color: var(--soft-maroon);
}

/* Style for mobile expand button links */
.mobile-expand-btn {
    text-decoration: none;
    color: white !important;
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--deep-navy);
    color: white;
    border: none;
    border-radius: 0 0 20px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-expand-btn:hover {
    background: var(--soft-maroon);
    color: white !important;
    text-decoration: none;
}

/* Ensure mobile button is visible */
@media (max-width: 768px) {
    .mobile-expand-btn {
        display: block !important;
    }
}

/* Desktop hover effect for cards */
@media (min-width: 769px) {
    .ministry-card:hover {
        cursor: pointer;
        transform: translateY(-15px) scale(1.03);
        box-shadow: var(--shadow-strong), var(--shadow-glow);
    }
    
    .ministry-card:hover .arrow {
        transform: translateX(10px);
    }
}

/* Fix for expanded state on mobile */
@media (max-width: 768px) {
    .ministry-card.expanded .mobile-expand-btn {
        background: var(--earth-green);
    }
    
    .ministry-card.expanded .mobile-expand-btn:hover {
        background: var(--soft-maroon);
    }
}
    