   /* --- Circulars List Styling --- */
    .circulars-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .circular-item {
        display: flex;
        align-items: center;
        gap: 20px;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
        padding: 20px;
        text-decoration: none;
        color: inherit;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .circular-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
    }

    /* --- Icon Styling --- */
    .circular-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background-color: #eaf2f8;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .circular-icon svg {
        width: 24px;
        height: 24px;
        fill: #3498db;
    }

    /* --- Info Section --- */
    .circular-info {
        flex-grow: 1;
    }

    .circular-title {
        font-size: 1.1em;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 5px;
    }

    .circular-meta {
        font-size: 0.85em;
        color: #7f8c8d;
    }

    /* --- Action/Link Styling --- */
    .circular-action {
        flex-shrink: 0;
        font-weight: 600;
        color: #3498db;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .circular-action svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
        transition: transform 0.2s ease;
    }

    .circular-item:hover .circular-action svg {
        transform: translateX(4px);
    }


    /* --- Responsive Adjustments --- */
    @media (max-width: 600px) {
        body {
            padding: 15px;
        }

        header h1 {
            font-size: 2.2em;
        }

        .circular-item {
            padding: 15px;
            gap: 15px;
        }

        .circular-icon {
            width: 40px;
            height: 40px;
        }

        .circular-icon svg {
            width: 20px;
            height: 20px;
        }

        .circular-title {
            font-size: 1em;
        }

        .circular-action span {
            display: none;
        }

        /* Hide text on small screens */
    }