  /* --- General Page & Typography --- */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f0f2f5;
            color: #333;
            margin: 0;
        }

        .document-container {
            max-width: 900px;
            margin: 2rem auto;
            padding: 2rem;
        }

        .document-container h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #1c1e21;
            margin-bottom: 0.5rem;
        }

        .document-container > p {
            font-size: 1.1rem;
            color: #606770;
            margin-bottom: 2rem;
        }

        /* --- Download List Styling --- */
        .download-list {
            display: flex;
            flex-direction: column;
            gap: 1rem; /* Space between each download item */
        }

        .download-item {
            display: flex;
            align-items: center;
            background-color: #ffffff;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
            transition: box-shadow 0.3s ease;
        }

        .download-item:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        /* --- Item Sections (Icon, Info, Actions) --- */
        .download-icon {
            flex-shrink: 0;
            margin-right: 1.5rem;
            background-color: #e7f3ff; /* Light blue background */
            color: #1877f2; /* Primary blue icon color */
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .download-info {
            flex-grow: 1; /* This makes the info section take all available space */
        }

        .download-info h3 {
            font-size: 1.1rem;
            font-weight: 500;
            margin: 0 0 0.25rem 0;
        }

        .download-info p {
            font-size: 0.9rem;
            color: #6c757d;
            margin: 0;
        }
        
        .download-actions {
            display: flex;
            gap: 0.75rem; /* Space between the buttons */
            flex-shrink: 0;
            margin-left: 1rem;
        }

        /* --- Button Styling --- */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.2rem;
            border: none;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        /* Primary Button (Download) */
        .btn {
            background-color: #1877f2;
            color: #fff;
        }
        .btn:hover {
            background-color: #166fe5;
        }

        /* Secondary Button (View) */
        .btn-secondary {
            background-color: #e4e6eb;
            color: #1c1e21;
        }
        .btn-secondary:hover {
            background-color: #d8dbdf;
        }

        /* --- Responsive Styling for Mobile --- */
        @media (max-width: 768px) {
            .document-container {
                padding: 1rem;
                margin: 1rem auto;
            }
            
            .download-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.5rem;
            }

            .download-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .download-actions {
                margin-left: 0;
                margin-top: 1.5rem;
                width: 100%;
            }

            .download-actions .btn {
                flex-grow: 1;
                justify-content: center; /* Center button text/icon */
            }
        }