:root {
    --bs-primary: #4A64A8;
    --bs-secondary: #a4a2a7;
    --bs-accent: #77ACA2;
    --bs-light: #F9F8F8;
    --bs-dark: #111111;
}

/* Primary color styles */
.bg-primary, .btn-primary {
    background-color: var(--bs-primary) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.btn-primary {
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: #77ACA2 !important;
    border-color: #77ACA2;
}

/* Secondary color styles */
.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

/* Background colors */
body {
    background-color: var(--bs-light);
}

.bg-light {
    background-color: #EAEAF2 !important;
}

/* Section backgrounds */
.section-bg {
    background-color: #F3F2F7;
}

/* Link colors */
a {
    color: #77ACA2;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #01d227;
}

/* Buttons and interactive elements */
.btn, .nav-link {
    transition: all 0.2s ease-in-out;
}

.nav-link:hover {
    color: #ac7777 !important;
}

/* Border colors */
.border-primary {
    border-color: var(--bs-primary) !important;
}

.border-secondary {
    border-color: var(--bs-secondary) !important;
}