/* Top Bar Styles */
        .top-bar {
            background-color:#EE0E82;
            color: white;
            padding: 10px 0;
            font-size: 16px;
            font-weight: 700;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
		navbar {
            background-color:#060270;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            height:auto;
            margin-top: 10px;
        }
		
        
        .top-bar a {
            color: #FE9900;
            text-decoration: bold;
            transition: color 0.3s ease;
        }
        
        .top-bar a:hover {
            color: white;
        }
        
        .top-bar i {
            margin-right: 25px;
        }
        
        .btn-register {
            background-color: #7a0eee;
            color: white !important;
            padding: 5px 12px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .btn-register:hover {
            background-color: #eeea0e;
            color: white;
        }
        
        /* FAQ Specific Styles */
        .hero-banner {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/4145153/pexels-photo-4145153.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .faq-section {
            padding: 60px 0;
        }
        
        .faq-category {
            margin-bottom: 40px;
        }
        
        .faq-category h2 {
            color: #EE0E82;
            border-bottom: 2px solid #EE0E82;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: #f8f9fa;
            padding: 15px 20px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #e9ecef;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-question.collapsed i {
            transform: rotate(0deg);
        }
        
        .faq-question:not(.collapsed) i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 20px;
            background-color: white;
        }
        
        .search-container {
            margin-bottom: 40px;
        }
        
        .search-box {
            position: relative;
        }
        
        .search-box input {
            padding: 15px 20px;
            border-radius: 50px;
            border: 2px solid #ddd;
            width: 100%;
            font-size: 16px;
        }
        
        .search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: #EE0E82;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
        }
        
        @media (max-width: 768px) {
            .top-bar {
                padding: 20px 0;
                text-align: center;
            }
            
            .top-bar .container > div {
                flex-direction: column;
            }
            
            .top-contact-info, .top-auth-links {
                margin-bottom: 5px;
            }
            
            .top-bar a {
                display: block;
                margin: 20px 0;
            }
            
            .btn-register {
                display: inline-block;
                margin-top: 5px;
            }
            
            .hero-banner {
                padding: 60px 0;
            }
            
            .hero-banner h1 {
                font-size: 2rem;
            }
        }