body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F9FA;
    color: #1a202c;
}

/* Custom colors from the logo */
.bg-brand-teal { background-color: #2D8F8B; }
.text-brand-teal { color: #2D8F8B; }
.border-brand-teal { border-color: #2D8F8B; }
.bg-brand-salmon { background-color: #E86A5D; }
.text-brand-salmon { color: #E86A5D; }
.border-brand-salmon { border-color: #E86A5D; }

.nav-link.active {
    color: #E86A5D;
    font-weight: 600;
}

/* Page load animation */
.page-section {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
