:root {
    --logo-header-height: 85px;
    --logo-footer-height: 72px;
    --logo-mobile-height: 45px;
    --primary: #1a1a2e;
    --primary-dark: #0f0f1a;
    --secondary: #16213e;
    --accent: #207b80;
    --accent-light: #28b2a7;
    --accent-dark: #207b80;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a14;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --text-white: #ffffff;
    --border: #e0e0e0;
    --success: #00b894;
    --error: #d63031;
    --warning: #fdcb6e;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;
    --border-radius: 12px;
    --section-padding: 100px;
    --transition: all 0.3s ease;
    --hero-height: 500px;
}

.logo img { height: var(--logo-header-height, 50px); width: auto; }
.footer .logo img { height: var(--logo-footer-height, 40px); width: auto; }
.footer-logo img { height: var(--logo-footer-height, 50px); width: auto; }
@media (max-width: 768px) { .logo img { height: var(--logo-mobile-height, 35px); } }
