#header.scrolled {
            padding: 5px 0 !important;
            background: var(--primary);
        }
.navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--text-light) !important;
            transition: all 0.3s ease;
        }
.navbar-brand:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }
.nav-link {
            font-weight: 500;
            color: var(--text-light) !important;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
.nav-link:hover {
            color: var(--text-light) !important;
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
.nav-link.active {
            color: var(--text-light) !important;
            background: rgba(255, 255, 255, 0.2);
        }
.footer {
            background: var(--text-dark);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
        }
.footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(0, 0, 0, 0) 100%);
            pointer-events: none;
        }
.text-light-gray {
            color: rgba(255, 255, 255, 0.7);
        }
.footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.footer-links li {
            margin-bottom: 12px;
        }
.footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
.footer-links a:hover {
            color: var(--text-light);
            transform: translateX(5px);
        }
.footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
.footer-contact i {
            color: var(--primary);
            margin-right: 10px;
            margin-top: 5px;
        }
.footer-contact a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
.footer-contact a:hover {
            color: var(--text-light);
        }
.social-links {
            display: flex;
            gap: 15px;
        }
.social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
.social-link:hover {
            background: var(--primary);
            color: var(--text-light);
            transform: translateY(-3px);
        }
:root {
            --primary: #194e5e;
            --primary-dark: #103844;
            --primary-action: #25838f;
            --secondary: #429b96;
            --accent: #9ad4c5;
            --mint: #a3ebd0;
            --text-dark: #0f2930;
            --text-light: #f5f7f8;
            --background: #ffffff;
            --gradient: linear-gradient(135deg, #1d5e70 0%, #2b8a96 50%, #4db0a7 100%);
        }
.btn-primary {
            background-color: var(--text-light) !important;
            color: var(--primary) !important;
            border: none !important;
            font-weight: 600;
            transition: all 0.3s ease;
        }
.footer-divider {
            border-color: rgba(255, 255, 255, 0.1);
            margin: 30px 0;
        }