        .highlight {
            background-color: var(--highlight-bg);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
            margin: 1.5rem 0;
        }
        
        .contact-info {
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        
        .section-nav {
            background-color: var(--highlight-bg);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .section-nav h3 {
            margin-top: 0;
        }
        
        .section-nav ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
            margin-bottom: 0;
        }
        
        .section-nav li {
            margin-bottom: 0.3rem;
        }
        
        .section-nav a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .section-nav a:hover {
            text-decoration: underline;
        }
        
        footer {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 2rem 0;
            text-align: center;
            margin-top: 3rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .last-updated {
            background-color: #e7f3ff;
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 2rem;
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .section-nav ul {
                grid-template-columns: 1fr;
            }
        }