.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.icon-filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.icon-bold {
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
}
.icon-line {
     font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}
html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #009C3B; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #007A2E; }.brand-patch {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 800;
    color: #009C3B;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    border: 1px solid #e5e5e5;
    z-index: 20;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 2px;
}
.brand-patch::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #002776;
    border-radius: 50%;
}.watercolor-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}
.watercolor-bg {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg, rgba(255, 223, 0, 0.6), rgba(0, 156, 59, 0.3));
    filter: blur(4px);
    z-index: 0;
    transition: all 0.4s ease;
}
.group:hover .watercolor-bg {
    transform: scale(1.2) rotate(15deg);
    filter: blur(2px);
    background: linear-gradient(135deg, rgba(255, 223, 0, 0.8), rgba(0, 156, 59, 0.5));
}
.watercolor-icon {
    position: relative;
    z-index: 10;
    color: #17191c;transition: transform 0.3s ease;
}
.group:hover .watercolor-icon {
    transform: translateY(-2px);
}
