
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

        /* Navigation */
.navbar {
    background-color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #90D5FF;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #90D5FF;
}

.donate-btn {
    background-color: #dc2626;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 0.85rem;
}

.donate-btn:hover {
    background-color: #b91c1c;
}

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #90D5FF 0%, #6BB6FF 100%);
            color: white;
            text-align: center;
            padding: 120px 2rem 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?w=1920&h=1080&fit=crop') center/cover;
            opacity: 0.2;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
		
		/* Floating Logo Styles */
.floating-logo {
    position: absolute;
    top: 140px;
    left: 80px;
    z-index: 4;
    animation: float 3s ease-in-out infinite;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px dashed #90D5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: #90D5FF;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(144, 213, 255, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}


        /* Main Content */
        .main-content {
            padding: 80px 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: #90D5FF;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Three Column Layout */
        .three-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 60px;
        }

        .column {
            text-align: center;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .column:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(144, 213, 255, 0.2);
        }

        .column-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        .column h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .column p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .learn-more-btn {
            display: inline-block;
            padding: 0.7rem 1.5rem;
            background: #90D5FF;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .learn-more-btn:hover {
            background: #6BB6FF;
            transform: translateY(-2px);
        }

        /* Parallax Section */
        .parallax-section {
            background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1920&h=1080&fit=crop') center/cover fixed;
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(44, 62, 80, 0.85);
        }

        .parallax-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 2rem;
        }

        .parallax-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .parallax-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        /* What We Believe Section */
        .beliefs-section {
            padding: 80px 2rem;
            background: #f8f9fa;
        }

        .beliefs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .beliefs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 60px;
        }

        .belief-item {
            text-align: center;
            padding: 2.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .belief-item:hover {
            transform: translateY(-5px);
        }

        .belief-number {
            display: inline-block;
            width: 60px;
            height: 60px;
            background: #90D5FF;
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: bold;
            line-height: 60px;
            margin-bottom: 1.5rem;
        }

        .belief-title {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .belief-description {
            color: #666;
            line-height: 1.7;
        }

        /* Leadership Section */
        .leadership-section {
            padding: 0;
        }

        .leadership-container {
            max-width: 100%;
            margin: 0 auto;
        }

        /* Lead Pastors Section - Like Image 1 */
        .lead-pastors-section {
            background: linear-gradient(135deg, rgba(240, 240, 240, 0.8), rgba(255, 255, 255, 0.9));
            position: relative;
            overflow: hidden;
        }

        .lead-pastors-content {
            display: flex;
            align-items: center;
            min-height: 500px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .lead-pastors-text {
            flex: 1;
            padding-right: 4rem;
            z-index: 2;
        }

        .lead-pastors-subtitle {
            color: #d63384;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .lead-pastors-title {
            font-size: 3.5rem;
            color: #2c3e50;
            margin-bottom: 2rem;
            font-weight: 300;
            font-style: italic;
            line-height: 1.2;
        }

        .lead-pastors-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        .lead-pastors-btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: transparent;
            color: #666;
            text-decoration: none;
            border: 1px solid #ddd;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .lead-pastors-btn:hover {
            background: #2c3e50;
            color: white;
            border-color: #2c3e50;
        }

        .lead-pastors-image {
            flex: 1;
            position: relative;
        }

        .couple-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 0;
        }

        /* Staff Grid Section - Like Image 2 */
        .staff-grid-section {
            padding: 80px 2rem;
            background: white;
        }

        .staff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .staff-card {
            text-align: center;
            background: white;
            padding: 1.5rem;
            transition: transform 0.3s;
        }

        .staff-card:hover {
            transform: translateY(-5px);
        }

        .staff-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 0;
            margin-bottom: 1.5rem;
        }

        .staff-name {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .staff-title {
            color: #999;
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.4;
        }

        /* Ministry Icons */
        .ministry-icons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 60px;
        }

        .ministry-icon {
            text-align: center;
            padding: 2rem;
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            background: #90D5FF;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .ministry-name {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .ministry-desc {
            color: #666;
            font-size: 0.9rem;
        }
		
		/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Mobile Navigation Fixes */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: #90D5FF;
}

/* Floating Logo Responsive */


/* Hero Section Improvements */
.hero-section {
    padding: 140px 2rem 100px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Ministry Areas Section */
.ministry-areas-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Back to Top Button Responsive */
.back-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    background: #90D5FF !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    cursor: pointer !important;
    display: none !important;
    z-index: 1000 !important;
    font-size: 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(144, 213, 255, 0.4) !important;
}

.back-to-top:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(144, 213, 255, 0.6) !important;
}

/* Enhanced Responsive Breakpoints */
@media (max-width: 1024px) {
    .lead-pastors-content {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .lead-pastors-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .lead-pastors-title {
        font-size: 3rem;
    }
    
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Show mobile navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Floating logo adjustments */
    .floating-logo {
        top: 50px;
        left: 50px;
    }
    
    .floating-logo img {
        width: 80px;
        height: 80px;
    }
    
    /* Hero section */
    .hero-section {
        padding: 120px 1rem 80px;
        min-height: 50vh;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    /* Main content */
    .main-content {
        padding: 60px 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* Three columns */
    .three-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 40px;
    }
    
    .column {
        padding: 1.5rem;
    }
    
    /* Parallax section */
    .parallax-section {
        background-attachment: scroll;
        min-height: 400px;
        padding: 2rem 1rem;
    }
    
    .parallax-content h2 {
        font-size: 2rem;
    }
    
    .parallax-content p {
        font-size: 1rem;
    }
    
    /* Staff grid */
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .staff-image {
        height: 200px;
    }
    
    /* Ministry icons */
    .ministry-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Beliefs section */
    .beliefs-section {
        padding: 60px 1rem;
    }
    
    .beliefs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 40px;
    }
    
    .belief-item {
        padding: 2rem;
    }
    
    /* Lead pastors responsive */
    .lead-pastors-title {
        font-size: 2.5rem;
    }
    
    .couple-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    /* Floating logo */
    .floating-logo {
        top: 30px;
        left: 30px;
    }
    
    .floating-logo img {
        width: 60px;
        height: 60px;
    }
    
    /* Hero section */
    .hero-section {
        padding: 100px 1rem 60px;
        min-height: 40vh;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    /* Main content */
    .main-content {
        padding: 40px 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Columns */
    .column {
        padding: 1rem;
    }
    
    .column h3 {
        font-size: 1.3rem;
    }
    
    .column-image {
        height: 150px;
    }
    
    /* Parallax section */
    .parallax-section {
        min-height: 300px;
        padding: 1.5rem 1rem;
    }
    
    .parallax-content h2 {
        font-size: 1.6rem;
    }
    
    .parallax-content p {
        font-size: 0.9rem;
    }
    
    /* Staff grid */
    .staff-grid-section {
        padding: 40px 1rem;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .staff-card {
        padding: 1rem;
    }
    
    .staff-image {
        height: 250px;
    }
    
    .staff-name {
        font-size: 1.2rem;
    }
    
    /* Ministry icons */
    .ministry-areas-section {
        padding: 40px 1rem;
    }
    
    .ministry-icons {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 30px;
    }
    
    .ministry-icon {
        padding: 1.5rem;
    }
    
    /* Beliefs section */
    .beliefs-section {
        padding: 40px 1rem;
    }
    
    .belief-item {
        padding: 1.5rem;
    }
    
    .belief-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        line-height: 50px;
    }
    
    .belief-title {
        font-size: 1.2rem;
    }
    
    /* Lead pastors */
    .lead-pastors-content {
        padding: 2rem 1rem;
    }
    
    .lead-pastors-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .lead-pastors-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .couple-image {
        height: 250px;
    }
    
    /* Back to top button */
    .back-to-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .lead-pastors-title {
        font-size: 1.8rem;
    }
    
    .staff-image {
        height: 200px;
    }
    
    .couple-image {
        height: 200px;
    }
}
/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3:after {
        margin: 8px auto 0;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem 20px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }

            .hero-section p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .three-columns {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .beliefs-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .lead-pastors-content {
                flex-direction: column;
                text-align: center;
                padding: 3rem 1rem;
                min-height: auto;
            }

            .lead-pastors-text {
                padding-right: 0;
                margin-bottom: 2rem;
            }

            .lead-pastors-title {
                font-size: 2.5rem;
            }

            .couple-image {
                height: 300px;
            }

            .staff-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .ministry-icons {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .main-content,
            .beliefs-section,
            .staff-grid-section {
                padding: 60px 1rem;
            }

            .lead-pastors-content {
                padding: 2rem 1rem;
            }

            .lead-pastors-title {
                font-size: 2rem;
            }

            .staff-grid {
                grid-template-columns: 1fr;
            }

            .ministry-icons {
                grid-template-columns: 1fr;
            }
        }
    