
        :root {
            --primary-color: #065ec4;
            --secondary-color: #D0EAE8;
            --background-color: #ffffff;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--background-color);
            color: #333;
            padding-top: 140px; /* Account for fixed header height */
        }
        
        /* Fixed Header Styles */
        .fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
            background-color: var(--background-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .header-scrolled {
            padding: 5px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .header-scrolled .logo {
            height: 50px;
            transition: all 0.3s ease;
        }
        
        .header-scrolled .office-name {
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }
        
        .logo {
            height: 70px;
            transition: all 0.3s ease;
        }
        
        .office-name {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }
        
        .navbar {
            transition: all 0.3s ease;
        }
        
        .navbar-scrolled {
            padding: 5px 0;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 5px;
            transition: all 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        /* Banner Styles */
        .banner-slider {
            height: 400px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .carousel-item {
            height: 400px;
        }
        
        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
        
        .carousel-caption {
            background: rgba(0,0,0,0.6);
            border-radius: 10px;
            padding: 20px;
        }
        
        /* Card Styles */
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .suggestion-card {
            background: linear-gradient(135deg, var(--primary-color), #0a7cff);
            color: white;
        }
        
        .mission-card {
            background-color: var(--secondary-color);
        }
        
        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .suggestion-card .card-icon {
            color: white;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
        }
        
        .btn-primary:hover {
            background-color: #054a9c;
        }
        
        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            border-radius: 30px;
            font-weight: 500;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* News Section */
        .news-section {
            background-color: #a3a7ac;
            padding: 40px 0;
            border-radius: 10px;
        }
        
        .news-card {
            height: 100%;
            
        }
        
        .news-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        /* Footer */
        .footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--secondary-color);
        }
        
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #aaa;
        }
        .footer .heart-beat {
    color: #e63946;
    margin: 0 4px;
    animation: heartbeat 1.3s infinite ease-in-out;
} 
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.3);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.3);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}