        body {
            font-family: 'Inter', sans-serif;
            background-color: #211C38;
            color: #BDBAC2;
        }
        .accent-works { border-color: #0563F0; color: #0563F0; }
        .bg-accent-works { background-color: #0563F0; }
        .accent-institute { border-color: #45A64A; color: #45A64A; }
        .bg-accent-institute { background-color: #45A64A; }
        .accent-foundation { border-color: #FFB000; color: #FFB000; }
        .bg-accent-foundation { background-color: #FFB000; }

        .service-btn {
            transition: all 0.2s ease-in-out;
        }
        .service-btn.active {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .content-panel {
            min-height: 150px;
        }
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }