 /* Homepage Specific Styles */
   
    /* Reset Pico CSS spacing to remove gaps between sections */
    main {
        padding-block: 0 !important;
    }

    section {
        margin-bottom: 0 !important;
    }

    /* Define missing color variables */
    :root {
        --primary-blue: #1e40af;
        --primary-blue-light: #3b82f6;
        --primary-blue-hover: #2563eb;
    }


 
 
 .hero {
        background-color: #3b82f6;
        color: white;
        text-align: center;
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: white;
    }

    .hero p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        color: white;
        opacity: 0.9;
    }

    .btn {
        background-color: var(--primary-blue-light);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 0.375rem;
        font-size: 1.125rem;
        text-decoration: none;
        transition: background-color 0.3s ease;
        border: none;
        display: inline-block;
    }

    .btn:hover {
        background-color: var(--primary-blue-hover);
        color: white;
    }

    .content-section {
        padding: 6rem 0;
    }

    .content-section.gray {
        background-color: #f3f4f6;
    }

    .content-section .container {
        max-width: 80rem;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
    }

    .content-section h2 {
        font-size: 1.875rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #111827;
    }

    .content-section p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        color: #4b5563;
    }

    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .card {
        background: white;
        border-radius: 0.5rem;
        padding: 1.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    .card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #111827;
    }

    .card p {
        color: #4b5563;
        margin-bottom: 1rem;
    }

    .card a {
        color: var(--primary-blue-light);
        text-decoration: none;
        font-weight: 600;
    }

    .card a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2rem;
        }

        .hero {
            padding: 4rem 0;
        }

        .content-section {
            padding: 4rem 0;
        }

        .card-grid {
            grid-template-columns: 1fr;
        }
    }