        /* Design System & Warm Color Palette */
        :root {
            --bg-warm: #fcf9f5;         /* Soft, inviting cream background */
            --text-dark: #233142;       /* Soft charcoal for excellent readability */
            --primary-blue: #1a365d;    /* Your solid anchoring deep trust blue */
            --accent-gold: #c59b4e;     /* Rich warm gold for headings and lines */
            --accent-light: #f4eee1;    /* Warm sand background accent */
            --card-bg: #ffffff;
            --border-color: #e8e2d5;
            --text-secondary: #5a6b7c;
        }

        html {
            scroll-behavior: smooth;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-warm);
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* STICKY HEADER WITH INTEGRATED NAVIGATION */
        header {
            background-color: #ffffff;
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
            padding: 12px 20px;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .brand-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-img {
            display: block;
            height: 45px; /* Perfect size for a crisp header icon */
            width: auto;
            border-radius: 4px;
        }

        .brand-text {
            font-family: "Georgia", serif;
            font-size: 1.6rem;
            color: var(--primary-blue);
            font-weight: normal;
            letter-spacing: -0.5px;
        }

        /* The Custom 7 Tail Drop Effect */
        .seven-tail {
            font-family: "Georgia", "Times New Roman", serif;
            color: var(--accent-gold);
            display: inline-block;
            font-size: 1.8rem;
            line-height: 0;
            position: relative;
            top: 0.08em; /* Elegantly drops the tail below the font baseline */
            font-weight: bold;
        }

        /* NAVIGATION LINKS (Integrated Into Header Right Side) */
        .mini-box-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            overflow-x: auto;
            white-space: nowrap;
            -ms-overflow-style: none;
            scrollbar-width: none;
            padding: 4px 0;
        }

        .mini-box-wrapper::-webkit-scrollbar {
            display: none;
        }

        .nav-link-box {
            display: inline-block;
            background-color: #fafbfc;
            border: 1px solid #cbd5e0;
            border-radius: 4px;
            padding: 8px 14px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #4a5568;
            text-decoration: none;
            transition: all 0.2s ease-in-out;
        }

        .nav-link-box:hover {
            background-color: var(--primary-blue);
            color: #ffffff;
            border-color: var(--primary-blue);
            transform: translateY(-1px);
        }

        /* HERO VISUAL BANNER (Thinner, balanced with your new tagline text) */
        .hero-section {
            position: relative;
            background-color: var(--primary-blue);
            background-image: linear-gradient(rgba(26, 54, 93, 0.88), rgba(35, 49, 66, 0.75)), url('images/clouds-bible.jpg');
            background-size: cover;
            background-position: center;
            color: #ffffff;
            text-align: center;
            padding: 45px 20px;
            border-bottom: 4px solid var(--accent-gold);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content h2 {
            font-family: "Georgia", serif;
            font-size: 2.2rem;
            font-weight: normal;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #ffffff;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-style: italic;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .hero-divider {
            width: 60px;
            height: 2px;
            background-color: var(--accent-gold);
            margin: 0 auto 15px auto;
        }

        /* WELCOME & OVERVIEW SECTION */
        .welcome-container {
            max-width: 1000px;
            margin: 60px auto;
            padding: 0 20px;
            text-align: center;
        }

        .welcome-title {
            font-family: "Georgia", serif;
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-weight: normal;
        }

        .welcome-text {
            font-size: 1.1rem;
            color: var(--text-dark);
            max-width: 750px;
            margin: 0 auto 50px auto;
            line-height: 1.8;
        }

        /* LIBRARY DRAWERS GRID INTERFACE */
        .drawers-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: left;
        }

        @media (min-width: 768px) {
            .drawers-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .drawers-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }

        .drawer-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-top: 4px solid var(--primary-blue);
            border-radius: 6px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            transition: all 0.25s ease;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .drawer-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 25px rgba(197, 155, 78, 0.1);
            border-top-color: var(--accent-gold);
        }

        .drawer-heading {
            font-family: "Georgia", serif;
            font-size: 1.35rem;
            color: var(--primary-blue);
            margin-bottom: 12px;
            font-weight: normal;
        }

        .drawer-card:hover .drawer-heading {
            color: var(--accent-gold);
        }

        .drawer-description {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .drawer-action {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: auto;
        }

        /* FOOTER */
        footer {
            background-color: #ffffff;
            border-top: 1px solid var(--border-color);
            padding: 40px 20px;
            text-align: center;
            margin-top: 80px;
        }

        .footer-logo {
            font-family: "Georgia", serif;
            font-size: 1.2rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        footer p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            letter-spacing: 0.3px;
        }

        /* Mobile Layout Optimizations */
        @media (max-width: 820px) {
            .header-container {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }
            .mini-box-wrapper {
                width: 100%;
                justify-content: flex-start;
                padding-bottom: 5px;
            }
        }