
            :root {
                --theme-primary: #0C2B4B;
                --theme-secondary: #F3BD00;
                --theme-accent: #1ABC9C;
                --theme-header: #0C2B4B;
                --theme-footer: #092139;
                --theme-text: #333333;
                --theme-link: #F3BD00;
                --theme-button-bg: #F3BD00;
                --theme-button-text: #0C2B4B;
                --theme-button-hover: #e0a800;
                --theme-body-bg: #ffffff;
                --theme-card-bg: #ffffff;
                --theme-border: #e8edf2;
                --theme-font-family: Poppins, sans-serif;
            }
            
            body {
                font-family: Poppins, sans-serif;
                background-color: #ffffff;
                color: #333333;
            }
            
            .btn-primary {
                background-color: #F3BD00 !important;
                color: #0C2B4B !important;
                border-color: #F3BD00 !important;
            }
            
            .btn-primary:hover {
                background-color: #e0a800 !important;
                border-color: #e0a800 !important;
            }
            
            .btn-outline-primary {
                border-color: #F3BD00 !important;
                color: #F3BD00 !important;
            }
            
            .btn-outline-primary:hover {
                background-color: #F3BD00 !important;
                color: #0C2B4B !important;
            }
            
            .text-primary {
                color: #F3BD00 !important;
            }
            
            .bg-primary {
                background-color: #F3BD00 !important;
            }
            
            a {
                color: #F3BD00;
                text-decoration: none;
            }
            
            a:hover {
                color: #e0a800;
                text-decoration: none;
            }
            
            .card {
                background-color: #ffffff;
                border-color: #e8edf2;
            }
            
            .border-primary {
                border-color: #F3BD00 !important;
            }
            
            .navbar .navbar-brand {
                color: #0C2B4B;
            }
            
            .navbar .navbar-nav .nav-link:hover,
            .navbar .navbar-nav .nav-link.active {
                color: #F3BD00 !important;
            }
            
            .footer {
                background-color: #092139;
            }
            
            
        