        /* Base Styles & Variables */
        :root {
            --blue: #1a4b8c;
            --light-blue: #3498db;
            --yellow: #f1c40f;
            --gold: #d4af37;
            --white: #ffffff;
            --off-white: #f8f9fa;
            --black: #222222;
            --dark-gray: #333333;
            --light-gray: #e9ecef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--off-white);
        }
        
        a {
            text-decoration: none;
            color: var(--blue);
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: var(--yellow);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: var(--blue);
            color: var(--white);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .logo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--yellow);
        }
        
        .church-name {
            font-size: 1.5rem;
            color: var(--white);
            text-align: center;
        }
        
        /* Navigation */
        nav {
            width: 100%;
        }
        
        .nav-menu {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
        }
        
        .nav-menu li {
            margin: 5px;
        }
        
        .nav-menu a {
            color: var(--white);
            padding: 10px 15px;
            border-radius: 4px;
            font-weight: 500;
            display: block;
        }
        
        .nav-menu a:hover {
            background: var(--yellow);
            color: var(--blue);
        }
        
        .search-container {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }
        
        #search-bar {
            padding: 10px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            width: 70%;
            max-width: 300px;
        }
        
        .search-btn {
            background: var(--yellow);
            color: var(--blue);
            border: none;
            padding: 10px 15px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
        }
        
        /* Marquee */
        .marquee {
            background: var(--yellow);
            color: var(--blue);
            padding: 10px 0;
            font-weight: 600;
        }
        
        /* Main Content */
        main {
            padding: 30px 0;
        }
        
        section {
            margin-bottom: 40px;
        }
        
        .section-title {
            color: var(--blue);
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--yellow);
        }
        
        /* Activities Section */
        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .activity-card {
            background: var(--white);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--blue);
        }
        
        .activity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .activity-card h3 {
            color: var(--blue);
            margin-bottom: 15px;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 200px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .about-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .about-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .card-desc {
            padding: 20px;
        }
        
        .card-desc p {
            color: var(--dark-gray);
            margin-top: 10px;
        }
        
        /* Footer */
        footer {
            background: var(--blue);
            color: var(--white);
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-section {
            text-align: center;
        }
        
        .footer-section h5 {
            color: var(--yellow);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Design */
        @media (min-width: 768px) {
            .header-content {
                flex-direction: row;
                justify-content: space-between;
            }
            
            .logo-container {
                margin-bottom: 0;
            }
            
            .church-name {
                font-size: 1.8rem;
                text-align: left;
            }
            
            nav {
                width: auto;
            }
            
            .search-container {
                margin-top: 0;
            }
            
            .nav-menu {
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 767px) {
            .church-name {
                font-size: 1.2rem;
            }
            
            .nav-menu a {
                padding: 8px 10px;
                font-size: 0.9rem;
            }
        }
        
        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mb-20 {
            margin-bottom: 20px;
        }
        
        .highlight {
            color: var(--yellow);
            font-weight: 600;
        }
        
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, var(--blue), transparent);
            margin: 30px 0;
            border: none;
        }