    <style>
        /* CSS reset and basic styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

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

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

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #003366; /* Navy Blue */
            color: #ffffff;
            text-decoration: none;
            border-radius: 9999px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background-color: #002244;
            transform: translateY(-2px);
        }

        /* --- Header --- */
        .header {
            background-color: #003366; /* Navy Blue */
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .nav {
            position: relative;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .nav-list li a {
            color: #fff;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 9999px;
            transition: background-color 0.3s ease;
        }
        
        .nav-list li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .hamburger-menu {
            display: none; /* Hidden by default on desktop */
            font-size: 2rem;
            cursor: pointer;
        }

        /* --- Hero Section --- */
        .hero-section {
            background: url("https://placehold.co/1200x500/003366/ffffff?text=Faith.+Fun.+Friends.") no-repeat center center/cover;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            border-radius: 12px;
            margin: 20px;
            overflow: hidden;
        }

        .hero-content h2 {
            font-size: 3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* --- Info Section --- */
        .info-section {
            padding: 40px 20px;
        }

        .info-section .container {
            display: flex;
            gap: 20px;
        }

        .info-item {
            flex: 1;
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

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

        .info-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #003366;
        }

        /* --- Call to Action Section --- */
        .cta-section {
            background-color: #003366; /* Navy Blue */
            color: #fff;
            text-align: center;
            padding: 60px 20px;
            border-radius: 12px;
            margin: 20px;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer {
            text-align: center;
            padding: 20px;
            background-color: #333;
            color: #fff;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }

        /* --- Media Queries for responsiveness --- */

        /* Tablet styles (max-width: 768px) */
        @media (max-width: 768px) {
            .nav-list {
                /* Hide the desktop nav and enable mobile nav toggle */
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: #003366;
                width: 100%;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }

            .nav-list.active {
                display: flex;
            }

            .hamburger-menu {
                display: block; /* Show the hamburger icon */
            }

            .info-section .container {
                flex-direction: column; /* Stack the info items vertically */
            }

            .hero-content h2 {
                font-size: 2.5rem;
            }
        }
        
        /* Mobile styles (max-width: 480px) */
        @media (max-width: 480px) {
            .header .container {
                flex-direction: column;
            }

            .nav-list {
                margin-top: 15px;
            }

            .logo {
                margin-bottom: 10px;
            }

            .hero-content h2 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 1.2rem;
            }
        }
    </style>