    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --forest-green: #1d4d2b;
        --cascadia-blue: #3b7ea1;
        --black: #1a1a1a;
        --white: #ffffff;
        --light-gray: #f5f5f5;
    }

    body {
        font-family: 'EB Garamond', serif;
        color: var(--black);
        line-height: 1.7;
        font-size: 18px;
    }

    nav {
        background: var(--white);
        padding: 1.5rem 2rem;
        border-bottom: 2px solid var(--black);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    nav .container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav .logo {
        display: flex;
        align-items: center;
        font-size:1.7rem;
        font-weight:500;
        text-decoration: none;
    }

    nav .logo img {
        height: 150px;
        width: auto;
    }

    nav .tagline {
        font-size: 0.95rem;
        color: var(--cascadia-blue);
        margin-left: 2.5rem;
        font-style: regular;
    }

    nav ul {
         flex-direction: row;
         display: flex;
         list-style: none;
         gap: 1rem;
        justify-content: center;
     }


    nav a {
        color: var(--black);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

    nav a:hover {
        color: var(--forest-green);
    }

    .tagline-large {
        font-size: 1.0rem;
        color: var(--cascadia-blue);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 2rem;
    }

    .section {
        margin-bottom: 4rem;
    }

    h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
        color: var(--black);
        border-bottom: 3px solid var(--forest-green);
        padding-bottom: 0.5rem;
    }

    h2 {
        font-size: 2rem;
        margin: 3rem 0 1.5rem;
        color: var(--forest-green);
    }

    .intro {
        background: var(--light-gray);
        padding: 2rem;
        border-radius: 8px;
        margin-bottom: 3rem;
    }

    .resource-category {
        margin-bottom: 3rem;
    }

    .resource-row {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .resource-item {
        /* background: var(--white); */
        background: radial-gradient(ellipse at bottom, var(--light-gray) 40%, var(--cascadia-blue));
        border: 2px solid var(--light-gray);
        border-left: 4px solid var(--cascadia-blue);
        padding: 2rem;
        margin-bottom: 1.5rem;
        border-radius: 4px;
        transition: border-color 0.3s, box-shadow 0.3s;
        flex:1;

    }

    .resource-link {
       color: var(--cascadia-blue); font-weight: 600;

    }

    .resource-item.width-33 {
        flex: 0 0 33%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .resource-item.width-67 {
        flex: 0 0 calc(67% - 1rem);
        display: flex;
        flex-direction: column;
        justify-content: space-between;

    }

    .resource-item.centered {
        text-align: center;

    }

    .resource-item:hover {
        background: radial-gradient(ellipse at bottom, var(--light-gray) 40%, var(--forest-green));
        border-color: var(--forest-green);
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .resource-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--black);
    }

    .resource-meta {
        font-size: 0.95rem;
        color: #666;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .resource-meta:hover {
        font-size: 0.95rem;
        color: var(--light-gray);
        margin-bottom: 1rem;
        font-style: italic;
    }

    .resource-item p {
        margin-bottom: 1.5rem;
        color: #333;
    }

    .download-btn {
        display: inline-block;
        padding: 0.75rem 2rem;
        margin-top: auto;
        margin-right: auto;
        margin-left:auto;
        background: var(--cascadia-blue);
        color: var(--white);
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        transition: background 0.3s, transform 0.2s;

    }

    .download-btn:hover {
        background: var(--forest-green);
        transform: translateY(-2px);
    }

    .note-box {
        background: #fff9e6;
        border-left: 4px solid #f0c419;
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 4px;
    }

    .note-box p {
        margin: 0;
        color: #666;
    }

    footer {
        background: var(--black);
        color: var(--white);
        text-align: center;
        padding: 2rem;
        margin-top: 4rem;
    }

    .current-page {
        color: var(--forest-green) !important;
        font-weight: 700;
    }

    @media (max-width: 768px) {
        nav .container {
            flex-direction: row;
            gap: 0.25rem;
            padding: 0.5rem 0.5rem;
        }

        nav .logo {

            font-size:1.2rem;
        }

        nav ul {
            flex-direction: row;
            gap: 0.55rem;
            text-align: center;
            font-size:1.0rem;
        }

        nav .tagline-large {
            display:none;
        }
        h1 {
            font-size: 2.5rem;
        }

        .resource-item {
            padding: 1.5rem;
        }

        .resource-row {
            flex-direction: column;
        }

        .resource-item.width-33,
        .resource-item.width-67 {
            flex: 1;
        }

        .intro p {

           font-size:0.9rem;

        }
    }
    @media (max-width: 400px) {
        .featured-grid {
            gap: 1rem;
        }

       .featured-tile {
            padding: 1rem;
        }

        .tile-image {
            height: 120px;
        }

        .tile-content h3 {
            font-size: 1.1rem;
        }

        .tile-content p {
            font-size: 0.9rem;
        }

   }
