* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: #2c3e50;
            line-height: 1.6;
            min-height: 100vh;
            background-color: #e3f2fd;
            background-image: 
                radial-gradient(ellipse 800px 400px at 15% 25%, rgba(255, 255, 255, 0.9) 0%, transparent 50%),
                radial-gradient(ellipse 600px 350px at 85% 20%, rgba(255, 255, 255, 0.85) 0%, transparent 50%),
                radial-gradient(ellipse 700px 300px at 45% 55%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
                radial-gradient(ellipse 500px 250px at 70% 70%, rgba(255, 255, 255, 0.75) 0%, transparent 50%),
                radial-gradient(ellipse 400px 200px at 30% 80%, rgba(255, 255, 255, 0.7) 0%, transparent 50%),
                linear-gradient(180deg, #87ceeb 0%, #b0d8f0 40%, #d4ebf7 70%, #e8f4fa 100%);
            background-attachment: fixed;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Playfair Display', serif;
        }

        .logo i {
            font-size: 2rem;
            color: #ffd700;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-bar {
            position: relative;
        }

        .search-bar input {
            padding: 10px 40px 10px 15px;
            border: none;
            border-radius: 25px;
            width: 300px;
            font-size: 0.95rem;
            background: rgba(255, 255, 255, 0.95);
            color: #2c3e50;
        }

        .search-bar input:focus {
            outline: 2px solid #ffd700;
        }

        .search-bar i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Sidebar */
        .sidebar {
            position: fixed;
            left: 0;
            top: 70px;
            width: 280px;
            height: calc(100vh - 70px);
            background: linear-gradient(180deg, #283593 0%, #3949ab 100%);
            padding: 2rem 0;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .sidebar.hidden {
            transform: translateX(-100%);
        }

        .nav-menu {
            list-style: none;
        }

        .nav-menu li {
            margin-bottom: 5px;
        }

        .nav-menu a {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 30px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .nav-menu a:hover, .nav-menu a.active {
            background: rgba(255, 255, 255, 0.15);
            color: #ffd700;
            border-left: 4px solid #ffd700;
        }

        .nav-menu i {
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
        }

        /* Main Content */
        .main-content {
            margin-left: 280px;
            padding: 3rem 2rem;
            transition: margin-left 0.3s ease;
        }

        .main-content.expanded {
            margin-left: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Welcome Section */
        .welcome-section {
            text-align: center;
            padding: 4rem 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .welcome-section::before {
            content: '';
            position: absolute;
            width: 450px;
            height: 550px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
            opacity: 0.15;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 250"><defs><linearGradient id="gold" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23FFD700"/><stop offset="50%" style="stop-color:%23FFC700"/><stop offset="100%" style="stop-color:%23FFD700"/></linearGradient><filter id="shadow"><feGaussianBlur in="SourceAlpha" stdDeviation="2"/><feOffset dx="1" dy="1"/><feMerge><feMergeNode/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><g fill="url(%23gold)" filter="url(%23shadow)"><path d="M100,5 L108,35 Q110,42 115,44 L125,48 Q128,49 128,52 Q128,55 125,56 L115,60 Q110,62 108,69 L100,100 L92,69 Q90,62 85,60 L75,56 Q72,55 72,52 Q72,49 75,48 L85,44 Q90,42 92,35 Z"/><path d="M100,100 L108,131 Q110,138 115,140 L125,144 Q128,145 128,148 Q128,151 125,152 L115,156 Q110,158 108,165 L100,245 L92,165 Q90,158 85,156 L75,152 Q72,151 72,148 Q72,145 75,144 L85,140 Q90,138 92,131 Z"/><path d="M100,100 L69,92 Q62,90 60,85 L56,75 Q55,72 52,72 Q49,72 48,75 L44,85 Q42,90 35,92 L5,100 L35,108 Q42,110 44,115 L48,125 Q49,128 52,128 Q55,128 56,125 L60,115 Q62,110 69,108 Z"/><path d="M100,100 L131,92 Q138,90 140,85 L144,75 Q145,72 148,72 Q151,72 152,75 L156,85 Q158,90 165,92 L195,100 L165,108 Q158,110 156,115 L152,125 Q151,128 148,128 Q145,128 144,125 L140,115 Q138,110 131,108 Z"/><circle cx="100" cy="100" r="20" fill="%23FFD700" stroke="%23DAA520" stroke-width="3"/><circle cx="100" cy="100" r="12" fill="none" stroke="%23DAA520" stroke-width="2"/><path d="M95,95 L105,105 M105,95 L95,105" stroke="%23DAA520" stroke-width="2" stroke-linecap="round"/></g></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .welcome-section > * {
            position: relative;
            z-index: 1;
        }

        .welcome-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .welcome-section p {
            font-size: 1.2rem;
            color: #546e7a;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }

        .welcome-icon {
            font-size: 4rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
        }

        .verse {
            font-style: italic;
            color: #3949ab;
            font-size: 1.1rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);
            border-radius: 10px;
            border-left: 4px solid #3949ab;
            margin-top: 2rem;
        }

        /* Quick Access Cards */
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #1a237e;
            text-align: center;
            margin-bottom: 2rem;
        }

        .quick-access {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .access-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .access-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #3949ab 0%, #5e35b1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .access-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: #1a237e;
            margin-bottom: 0.5rem;
        }

        .access-card p {
            color: #546e7a;
            font-size: 0.95rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            text-align: center;
            padding: 2rem;
            margin-left: 280px;
            transition: margin-left 0.3s ease;
        }

        footer.expanded {
            margin-left: 0;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .search-bar input {
                width: 200px;
            }

            .sidebar {
                transform: translateX(-100%);
            }

            .sidebar.active {
                transform: translateX(0);
            }

            .main-content, footer {
                margin-left: 0;
            }

            .logo h1 {
                font-size: 1.3rem;
            }

            .welcome-section h2 {
                font-size: 2rem;
            }

            .quick-access {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .header-right {
                gap: 10px;
            }

            .search-bar {
                display: none;
            }

            .welcome-section {
                padding: 2rem 1rem;
            }
        }