 :root {
            --primary-color: #07508c;
            --secondary-color: #f8f9fa;
            --accent-color: #ffc107;
            
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: #184680;
        }
        
        .navbar-brand img {
            height: 50px;
        }
        
        .nav-link {
            color: white !important;
            font-weight: 500;
        }
        
        
       /*footer*/ 
         footer {
            background-color:  #184680;
            color: white;
            padding: 50px 0 20px;
        }
        
        .social-icon {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .social-icon:hover {
            color: var(--accent-color);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }