
        :root {
            --primary-color: #36571a;
            --secondary-color: #d7f2d1;
            --accent-color: #f3cf04;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --white: #ffffff;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            
        }

       

        .presentation-section {
            padding: 4rem 1rem;
            min-height: 60vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.025em;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 3rem;
            font-size: 1.1rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .table-responsive {
            overflow-x: auto;
            background: var(--white);
            border-radius: 1rem;
            box-shadow: var(--shadow);
            padding: 1px; /* To prevent border-radius clipping */
        }

        .premium-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            text-align: left;
        }

        .premium-table thead th {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 1.25rem 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
        }

        .premium-table thead th:first-child {
            border-top-left-radius: 0.9rem;
        }

        .premium-table thead th:last-child {
            border-top-right-radius: 0.9rem;
        }

        .premium-table tbody tr {
            transition: var(--transition);
        }

        .premium-table tbody tr:hover {
            background-color: var(--secondary-color);
            transform: scale(1.002);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .premium-table td {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid #f3f4f6;
            color: var(--text-dark);
            font-size: 1rem;
            vertical-align: middle;
        }

        .premium-table tr:last-child td {
            border-bottom: none;
        }

        .work-title {
            font-weight: 600;
            color: var(--primary-color);
        }

        .view-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, #4a7525 100%);
            color: var(--white) !important;
            padding: 0.4rem 0.8rem;
            border-radius: 9999px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(54, 87, 26, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .view-btn:hover {
            background: linear-gradient(135deg, #2a4414 0%, var(--primary-color) 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(54, 87, 26, 0.4);
            color: var(--white);
        }

        .view-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px -1px rgba(54, 87, 26, 0.2);
        }

        .view-btn .icon {
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .premium-table thead {
                display: none;
            }

            .premium-table, .premium-table tbody, .premium-table tr, .premium-table td {
                display: block;
                width: 100%;
            }

            .premium-table tr {
                margin-bottom: 1.5rem;
                border: 1px solid #e5e7eb;
                border-radius: 0.75rem;
                overflow: hidden;
            }

            .premium-table td {
                text-align: right;
                padding-left: 50%;
                position: relative;
            }

            .premium-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 1.25rem;
                width: 45%;
                font-weight: 600;
                text-align: left;
                color: var(--text-light);
                font-size: 0.8rem;
                text-transform: uppercase;
            }

            .premium-table td:last-child {
                text-align: center;
                padding: 1rem 1.25rem 1.25rem 1.25rem;
                background-color: #f9fafb;
                display: flex;
                justify-content: center;
            }

            .premium-table td:last-child::before {
                display: none;
            }
            
            .view-btn {
                width: 100%;
                padding: 0.6rem;
                font-size: 0.9rem;
            }
        }

        .table-footer-note {
            margin-top: 2rem;
            text-align: center;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .table-footer-note a {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: underline;
            transition: var(--transition);
        }

        .table-footer-note a:hover {
            color: #2a4414;
        }

        /* Pagination Styling */
        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .pagination-btn {
            background-color: var(--white);
            border: 1px solid #e5e7eb;
            color: var(--text-dark);
            padding: 0.6rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .pagination-btn:hover:not(:disabled) {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background-color: var(--secondary-color);
            transform: translateY(-1px);
        }

        .pagination-btn:disabled {
            color: var(--text-light);
            cursor: not-allowed;
            opacity: 0.5;
            background-color: #f9fafb;
        }

        .pagination-btn.active {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
            box-shadow: 0 4px 6px -1px rgba(54, 87, 26, 0.3);
        }
        
        @media (max-width: 768px) {
            .pagination-container {
                gap: 0.35rem;
            }
            .pagination-btn {
                padding: 0.5rem 0.8rem;
                font-size: 0.8rem;
            }
        }