* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Navigation Styles */
.topnav {
    background-color: #fb891f;
    overflow: hidden;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.topnav a {
    float: right;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 5px;
}

.topnav a:hover {
    background-color: #2d3748;
    transform: translateY(-2px);
}

.topnav .split {
    float: left !important;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(45deg, #f5f4f3, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

        /* Mobile Navigation */
        @media screen and (max-width: 768px) {
            .topnav {
                flex-direction: column;
                text-align: center;
            }
            
            .topnav a {
                font-size: 14px;
                padding: 10px;
                display: block;
                width: 100%;
            }
            
            .topnav .split {
                font-size: 20px;
                margin: 10px 0;
                order: -1;
            }
        }

        /* Table Styles - Desktop */
        .members-container {
            max-width: 1370px;
            margin: 20px auto;
            padding: 0 20px;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
            vertical-align: middle;
        }

        th {
            background-color: #fb891f;
            color: white;
            font-weight: bold;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        tr:hover {
            background-color: #f5f5f5;
        }

        /* Images */
        img {
            max-width: 80px;
            height: auto;
            border-radius: 4px;
            display: block;
        }

        /* Footer */
        .foot {
            text-align: center;
            background-color: #080808;
            color: #ddd;
            padding: 40px 20px;
            max-width: 1370px;
            margin: 0 auto;
            width: 100%;
        }

        .foot h1 {
            font-size: 2.5rem;
            font-weight: lighter;
            margin-bottom: 20px;
        }

        .foot p {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .foot .copyright {
            color: #696767;
            margin-top: 20px;
            font-size: 0.9rem;
        }

        /* Mobile Table - Cards Layout */
        @media screen and (max-width: 768px) {
            .members-container {
                padding: 0 10px;
            }
            
            table, thead, tbody, th, td, tr {
                display: block;
            }
            
            thead tr {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }
            
            tr {
                border: 1px solid #ccc;
                margin-bottom: 15px;
                padding: 12px;
                border-radius: 8px;
                background: white;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            }
            
            td {
                border: none;
                position: relative;
                padding-left: 50%;
                padding-top: 10px;
                padding-bottom: 10px;
                text-align: right;
            }
            
            td:before {
                content: attr(data-label);
                position: absolute;
                left: 6px;
                width: 45%;
                padding-right: 10px;
                white-space: nowrap;
                font-weight: bold;
                color: #fb891f;
                text-align: left;
            }
            
            img {
                max-width: 100px;
            }
            
            .foot h1 {
                font-size: 2rem;
            }
        }

        /* Extra small screens */
        @media screen and (max-width: 480px) {
            .topnav a {
                font-size: 12px;
                padding: 8px;
            }
            
            .foot {
                padding: 30px 15px;
            }
            
            .foot h1 {
                font-size: 1.8rem;
            }
        }