
        :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: 1100px;
            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;
            gap: 0.5rem;
            background-color: var(--primary-color);
            color: var(--white) !important;
            padding: 0.6rem 1.2rem;
            border-radius: 9999px;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 6px -1px rgba(54, 87, 26, 0.2);
        }

        .view-btn:hover {
            background-color: #2a4414;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(54, 87, 26, 0.3);
        }

        .view-btn .icon {
            font-size: 1.1rem;
        }

        @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-left: 1.25rem;
                background-color: #f9fafb;
            }

            .premium-table td:last-child::before {
                display: none;
            }
        }

        .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;
        }