@charset "UTF-8";
/* CSS Document */

 .sticky-nav {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            background: rgba(196, 30, 58, 0.95);
            border-radius: 8px;
            padding: 10px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 1000;
            max-width: 250px;
            backdrop-filter: blur(5px);
        }
        
        .sticky-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .sticky-nav li {
            margin: 0;
        }
        
        .sticky-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 8px 15px;
            font-size: 13px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        
        .sticky-nav a:hover {
            background: rgba(255,255,255,0.1);
            color: white;
            text-decoration: none;
            padding-left: 20px;
        }
        
        .sticky-nav li:last-child a {
            border-bottom: none;
        }
        
        .sticky-nav .nav-title {
            color: white;
            font-weight: bold;
            font-size: 14px;
            text-align: center;
            padding: 5px 15px;
            border-bottom: 2px solid rgba(255,255,255,0.3);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        @media (max-width: 768px) {
            .sticky-nav {
                display: none;
            }
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Add padding to sections for better anchor positioning */
        .section-anchor {
            padding-top: 80px;
            margin-top: -80px;
        }