
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background: #fefefe;
        }

        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #8B4513;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        @media (min-width: 1024px) and (max-width: 1366px) {
            .title {
                position: relative;
                right: 25px;
            }
        }

        @media (min-width: 1367px) {
            .title {
                position: relative;
                right: 180px;
            }
        }

        .title:hover {
            color: #CD853F;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #5D4037;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-menu a:hover {
            color: #8B4513;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: #D2691E;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a.active {
            color: #8B4513;
        }

        .nav-menu a.active::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 999999;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #8B4513;
            margin: 3px 0;
            transition: 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section */
        .hero {
            height: 60vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
            margin-top: 80px;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(139, 69, 19, 0.7), rgba(210, 105, 30, 0.6));
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 2rem;
            animation: fadeInUp 1.5s ease;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 300;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-style: italic;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.95;
            font-style: italic;
        }

        /* Main Content */
        main {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #8B4513;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #D2691E;
            margin: 1rem auto;
            border-radius: 2px;
        }

        /* Social Media Section */
        .socials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .social-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid;
            position: relative;
            overflow: hidden;
        }

        .social-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s;
        }

        .social-card:hover::before {
            left: 100%;
        }

        .social-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .social-card.facebook {
            border-top-color: #1877F2;
        }

        .social-card.youtube {
            border-top-color: #FF0000;
        }

        .social-card.instagram {
            border-top-color: #E4405F;
        }

        .social-card.twitter {
            border-top-color: #1DA1F2;
        }

        .social-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            transition: transform 0.3s ease;
        }

        .social-card:hover .social-icon {
            transform: scale(1.1);
        }

        .facebook .social-icon {
            background: linear-gradient(135deg, #1877F2, #42A5F5);
        }

        .youtube .social-icon {
            background: linear-gradient(135deg, #FF0000, #FF5722);
        }

        .instagram .social-icon {
            background: linear-gradient(135deg, #E4405F, #FFBA26);
        }

        .twitter .social-icon {
            background: linear-gradient(135deg, #1DA1F2, #0D8BD9);
        }

        .social-card h3 {
            color: #8B4513;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .social-card p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .social-link {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: transparent;
            border: 2px solid;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .facebook .social-link {
            color: #1877F2;
            border-color: #1877F2;
        }

        .facebook .social-link:hover {
            background: #1877F2;
            color: white;
        }

        .youtube .social-link {
            color: #FF0000;
            border-color: #FF0000;
        }

        .youtube .social-link:hover {
            background: #FF0000;
            color: white;
        }

        .instagram .social-link {
            color: #E4405F;
            border-color: #E4405F;
        }

        .instagram .social-link:hover {
            background: #E4405F;
            color: white;
        }

        .twitter .social-link {
            color: #1DA1F2;
            border-color: #1DA1F2;
        }

        .twitter .social-link:hover {
            background: #1DA1F2;
            color: white;
        }

        /* Map Section */
        .map-section {
            background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .map-title {
            font-size: 2rem;
            color: #8B4513;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .map-title::after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background: #D2691E;
            margin: 0.5rem auto;
            border-radius: 2px;
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: contrast(1.1) saturate(1.2);
        }

        .church-address {
            text-align: center;
            margin-top: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .church-address h4 {
            color: #8B4513;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .church-address p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #5D4037;
            color: white;
            text-align: center;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        footer h3 {
            margin-bottom: 1rem;
            color: #D2691E;
        }

        footer p {
            opacity: 0.9;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
                gap: 1rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero {
                height: 50vh;
                margin-top: 70px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            main {
                padding: 3rem 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .socials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .social-card {
                padding: 2rem 1.5rem;
            }

            .social-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .map-section {
                padding: 2rem 1.5rem;
            }

            .map-container {
                height: 300px;
            }

            .title {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 767px) {
            .nav-menu {
                top: 70px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .social-card {
                padding: 1.5rem;
            }

            .title {
                font-size: 1.2rem;
            }
        }
