/* Fresh Color Palette */
:root {
    --primary-teal: #0891b2;
    --primary-indigo: #4f46e5;
    --accent-coral: #f97316;
    --accent-emerald: #10b981;
    --accent-purple: #8b5cf6;
    --accent-orange: #fb923c;
    --accent-green: #22c55e;
    --accent-yellow: #fbbf24;
    --bg-white: #ffffff;
    --bg-soft: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

.content {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding-block: 6rem;
    min-height: 100vh;
}