
        /* General Reset & Typography */
        body {
            font-family: system-ui, -apple-system, sans-serif;
            font-size: large;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Skip link for keyboard users */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #000;
            color: #fff;
            padding: 8px;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }

        /* Focus styles */
        a:focus, button:focus, input:focus {
            outline: 3px solid #005fcc;
            outline-offset: 2px;
        }

        /* --- Requested Heading Sizes --- */
        h1 { font-size: 30px; margin-bottom: 0.5rem; }
        h2 { font-size: 28px; margin-top: 1.5rem; margin-bottom: 0.5rem; }
        h3 { font-size: 24px; margin-top: 1.25rem; margin-bottom: 0.5rem; }
        h4 { font-size: 20px; margin-top: 1rem; margin-bottom: 0.5rem; }

        /* --- Responsive Centered Logo --- */
        .logo-container {
            text-align: center;
            margin-bottom: 1.5rem;
            width: 100%;
        }

        .logo-container img {
            max-width: 800px;
            max-height: 800px;
            width: auto;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* Layout Utilities */
        header, nav, main, footer {
            margin-bottom: 2rem;
        }

        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        img {
            max-width: 100%;
            height: auto;
        }
        
        form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        label {
            display: block;
            margin-bottom: 0.25rem;
            font-weight: bold;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 0.5rem;
            margin-bottom: 1rem;
            box-sizing: border-box;
        }

        /* Map Container Specifics */
        .map-wrapper {
            margin: 2rem 0;
            position: relative;
            padding-bottom: 27.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            border: 1px solid #ccc;
        }

        .map-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .map-credit {
            position: absolute;
            bottom: 5px;
            right: 5px;
            background: rgba(255,255,255,0.8);
            padding: 2px 4px;
            font-size: 10px;
            z-index: 10;
        }
        
        .map-credit a {
            color: #333;
            text-decoration: underline;
        }


           /* Resources Container Specifics */

         {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 800px;
            margin: 40px auto;
            padding: 0 20px;
            background-color: #f9f9f9;
        }
        h1 {
            color: #2c3e50;
            border-bottom: 2px solid #186aa1;
            padding-bottom: 10px;
        }

        h2 {
            color: #2c3e50;
            border-bottom: 2px solid #000033;
            padding-bottom: 10px;
        }

        ul {
            list-style-type: none;
            padding: 0;
        }

        li {
            background: #fff;
            margin-bottom: 10px;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }
        li:hover {
            transform: translateX(5px);
        }
        a {
            text-decoration: none;
            color: #2980b9;
            font-weight: 600;
            font-size: 1.1em;
            display: block;
            margin-bottom: 5px;
        }
        a:hover {
            color: #1abc9c;
            text-decoration: underline;
        }
        .description {
            font-size: 0.9em;
            color: #666;
        }
        .category {
            font-size: 0.8em;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #999;
            margin-top: 20px;
            margin-bottom: 10px;
            font-weight: bold;
        }

           /* Resources Container Specifics */

        

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .card {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            border-top: 4px solid var(--accent-color);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .card h2 {
            margin-top: 0;
            font-size: 1.2rem;
            color: var(--header-bg);
        }

        .card p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .btn {
            display: inline-block;
            background-color: var(--link-color);
            color: white;
            padding: 0.6rem 1.2rem;
            text-decoration: none;
            border-radius: 4px;
            text-align: center;
            font-weight: 600;
            transition: background-color 0.2s;
        }

        .btn:hover {
            background-color: #2980b9;
        }
    
        .category-tag {
            display: inline-block;
            background-color: #eee;
            color: #555;
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            font-size: 0.75rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

           /* Back To Top Button Specifics */

            /* Source - https://stackoverflow.com/a/51600797
        Posted by JakeFromSF, modified by community. See post 'Timeline' for change history
        Retrieved 2026-07-22, License - CC BY-SA 4.0 */

        /*Floating Back-To-Top Button*/
            #myBtn {
                position: fixed;
                bottom: 25px;
                float: right;
                right: 18.5%;
                left: 87.25%;
                max-width: 45px;
                width: 100%;
                font-size: 13px;
                border-color: rgba(9, 8, 73);
                background-color: rgb(9, 8, 73);
                padding: .15px;
                border-radius: 0px;
            }
        /*On Hover Color Change*/
            #myBtn:hover {
                background-color: #266faf;
                border-color: rgba(9, 8, 73);
            }
    

