:root {
            --primary-color: #1a73e8;
            --dark-color: #0d47a1;
            --accent-color: #ff9800;
            --light-color: #f5f5f5;
            --text-dark: #333;
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: var(--text-dark);
            line-height: 1.6;
            padding-top: 80px;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--dark-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 0.5rem 1rem;
        }

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

        .logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 10px;
            border: 2px solid var(--accent-color);
        }

        .logo-text {
            font-weight: bold;
            color: white;
            font-size: 1.2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin: 0 15px;
        }

        .nav-menu a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
        }

        .nav-menu a.active {
            color: var(--accent-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
            background: transparent;
            border: none;
            padding: 5px;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1001;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 999;
            animation: pulse 2s infinite;
            transition: transform 0.3s;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
        }

        .hero-overlay {
            max-width: 900px;
            background: rgba(255, 255, 255, 0.95);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(26, 115, 232, 0.2);
        }

        .church-name {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .church-tagline {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--text-dark);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .pastor-section {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2.5rem;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .pastor-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .pastor-image:hover {
            transform: scale(1.05);
        }

        .pastor-info {
            text-align: left;
            max-width: 400px;
        }

        .pastor-name {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }

        .pastor-title {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
        }

        .pastor-message {
            font-style: italic;
            color: var(--text-dark);
        }

        .service-card {
            background: rgba(26, 115, 232, 0.08);
            border-radius: 12px;
            padding: 1.8rem;
            margin-bottom: 2.2rem;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(26, 115, 232, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            background: rgba(26, 115, 232, 0.12);
        }

        .service-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            text-align: center;
        }

        .service-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
            text-align: center;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .service-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .service-time {
            font-size: 1.2rem;
            margin-bottom: 0.9rem;
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .time-label {
            text-align: left;
            flex: 2;
            color: var(--text-dark);
        }

        .time-value {
            text-align: right;
            flex: 1;
            color: var(--primary-color);
            font-weight: 500;
        }

        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, var(--primary-color), transparent);
            margin: 2rem 0;
            width: 80%;
            margin-left: auto;
            margin-right: auto;
        }

        .verse {
            font-style: italic;
            margin-top: 2.5rem;
            padding: 1.2rem;
            background: rgba(255, 152, 0, 0.08);
            border-left: 4px solid var(--accent-color);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 4px;
            color: var(--text-dark);
        }

        .welcome-text {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: var(--text-dark);
        }

        .angel-decoration {
            position: absolute;
            font-size: 8rem;
            opacity: 0.1;
            color: var(--primary-color);
            z-index: 1;
        }

        .angel-1 {
            top: 50px;
            left: 50px;
            transform: rotate(-15deg);
        }

        .angel-2 {
            bottom: 50px;
            right: 50px;
            transform: rotate(15deg);
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 2rem;
            margin-top: 3rem;
        }

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

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Additional Sections */
        .section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 3rem;
            color: var(--dark-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        /* About Section - Fixed Layout */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: left;
            padding: 1rem;
        }

        .about-image {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            object-fit: cover;
            height: 400px;
        }

        .about-image:hover {
            transform: scale(1.02);
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

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

        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .event-card:hover .event-image {
            transform: scale(1.05);
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }

        .event-date {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .event-description {
            color: var(--text-dark);
        }

        .testimonies-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimony-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            position: relative;
        }

        .testimony-card::before {
            content: '"';
            font-size: 4rem;
            color: var(--accent-color);
            position: absolute;
            top: -10px;
            left: 10px;
            opacity: 0.3;
        }

        .testimony-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .testimony-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }

        .author-name {
            font-weight: 500;
            color: var(--dark-color);
        }

        /* Image Gallery Section */
        .gallery-section {
            padding: 4rem 2rem;
            background-color: #f5f7fa;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            aspect-ratio: 4/3;
        }

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

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 1.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                padding: 0.5rem 1rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: var(--dark-color);
                width: 80%;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.3s ease-in-out;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                overflow-y: auto;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 15px 0;
                text-align: center;
            }

            .nav-toggle {
                display: block;
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
            }

            .logo-text {
                font-size: 1rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 180px;
            }

            .church-name {
                font-size: 2rem;
            }
            
            .service-title {
                font-size: 1.5rem;
            }
            
            .service-time {
                flex-direction: column;
                text-align: center;
                padding: 0.6rem 0;
            }
            
            .time-label, .time-value {
                text-align: center;
            }
            
            .time-value {
                margin-top: 0.3rem;
            }
            
            .hero-overlay {
                padding: 2rem 1.5rem;
            }
            
            .angel-decoration {
                font-size: 5rem;
            }
            
            .angel-1 {
                top: 20px;
                left: 20px;
            }
            
            .angel-2 {
                bottom: 20px;
                right: 20px;
            }
            
            .pastor-section {
                flex-direction: column;
                text-align: center;
            }
            
            .pastor-info {
                text-align: center;
            }
            
            /* Mobile layout for about section */
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-text {
                text-align: center;
                order: 2;
            }
            
            .about-image {
                order: 1;
                height: 300px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                max-width: 140px;
                font-size: 0.9rem;
            }
            
            .hero-overlay {
                padding: 1.5rem 1rem;
            }
            
            .church-name {
                font-size: 1.8rem;
            }
            
            .service-title {
                font-size: 1.4rem;
            }
            
            .welcome-text {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 3rem 1rem;
            }
            
            .about-image {
                height: 250px;
            }
        }

        /* Large Device Optimizations */
        @media (min-width: 1200px) {
            .hero-overlay {
                max-width: 1100px;
                padding: 4rem;
            }
            
            .church-name {
                font-size: 3rem;
            }
            
            .pastor-image {
                width: 220px;
                height: 220px;
            }
            
            .pastor-name {
                font-size: 1.8rem;
            }
            
            .pastor-title {
                font-size: 1.2rem;
            }
            
            .service-card {
                padding: 2.5rem;
            }
            
            .service-title {
                font-size: 2rem;
            }
            
            .about-image {
                height: 450px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
                gap: 2rem;
            }
        }

        @media (min-width: 1400px) {
            .hero-overlay {
                max-width: 1200px;
            }
            
            .about-image {
                height: 500px;
            }
        }
    