body {
    background-color: #f8fafc;
    color: #0f172a;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-bg {
    background-color: #ffffff;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 24px 24px;
}

.professional-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
}

.professional-card:hover,
.professional-card-hover:hover {
    border-color: #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.bg-primary {
    background-color: #1c3468 !important;
}

.btn-primary {
    background-color: #1c3468 !important;
    color: white;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #2650a8 !important;
    box-shadow: 0 4px 12px rgba(28, 52, 104, 0.3);
}

/* Custom Checkbox */
.form-checkbox {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 1px solid #cbd5e1;
    border-radius: 0.25em;
    display: grid;
    place-content: center;
}

.form-checkbox::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em white;
    background-color: white;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.form-checkbox:checked {
    background-color: #1c3468;
    border-color: #1c3468;
}

.form-checkbox:checked::before {
    transform: scale(1);
}

/* Custom Scrollbar */
.custom-scrollbar {
    scrollbar-width: none;
    scrollbar-color: rgba(28, 52, 104, 0.1) transparent;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(28, 52, 104, 0.3);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: rgba(28, 52, 104, 0.6);
}