
        :root {
            --primary-blue: #1E3A59;
            --primary-light: #2A4D7A;
            --accent-blue: #007BFF;
            --success: #28A745;
            --warning: #FFC107;
            --danger: #DC3545;
            --light-gray: #F8F9FA;
            --border-color: #E9ECEF;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: #fff;
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        .navbar-brand img {
            max-height: 40px;
        }

        .stats-bar {
            background-color: var(--light-gray);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.875rem;
        }

        .stat-link {
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .stat-link:hover {
            transform: translateY(-1px);
        }

        /* Sidebar */
        .sidebar {
            background-color: var(--primary-blue);
            min-height: calc(100vh - 120px);
        }

        .sidebar .nav-link {
            color: rgba(255, 255, 255, 0.85);
            padding: 0.75rem 1rem;
            border-left: 3px solid transparent;
            transition: all 0.2s ease;
            display: flex;
           
            align-items: center;
        }

        .sidebar .nav-link:hover, 
        .sidebar .nav-link.active {
            background-color: rgba(255, 255, 255, 0.1);
            border-left-color: var(--warning);
            color: #fff;
        }

        .sidebar .nav-link i {
            width: 20px;
            margin-right: 0.5rem;
        }

        /* Main Content */
        .main-banner {
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
            border-radius: 8px;
            padding: 2rem;
        }

        .news-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .news-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .news-title a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .news-title a:hover {
            color: var(--accent-blue);
        }

        .apostila-info {
            background-color: var(--light-gray);
            border-radius: 0 0 8px 8px;
            padding: 1rem;
        }

        /* Right Sidebar */
        .highlight-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.2s ease;
        }

        .highlight-card:hover {
            transform: translateY(-3px);
        }

        .highlight-card img {
            height: 140px;
            object-fit: cover;
        }

         .contact-container {
            max-width: 800px;
            margin: 30px auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .contact-header {
            background-color: var(--primary-color);
            color: #000;
            padding: 20px;
            text-align: center;
        }
        
        .contact-form {
            padding: 30px;
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .form-control, .form-select {
            border-radius: 4px;
            padding: 10px 15px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(26, 74, 141, 0.25);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #153a70;
            border-color: #153a70;
            transform: translateY(-2px);
        }
        
        .optional-badge {
            background-color: #e9ecef;
            color: #6c757d;
            font-size: 0.75rem;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 5px;
        }
        
        .contact-info {
            background-color: var(--secondary-color);
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .info-icon {
            background-color: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

          .stats-bar {
            background-color: #e9ecef;
            padding: 10px 0;
            text-align: center;
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 20px;
        }

        

        /* Footer */
        .footer {
            background-color: #2C3E50;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer a:hover {
            color: #fff;
        }

        /* Cookie Banner */
        .cookie-banner {
            background-color: var(--primary-blue);
            color: white;
            padding: 1rem 0;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .sidebar {
                display: none;
            }
        }

        @media (max-width: 767.98px) {
            .main-banner h2 {
                font-size: 1.5rem;
            }
            
            .stats-bar .d-flex {
                flex-wrap: wrap;
                gap: 0.5rem;
            }
        }
