:root {
            --primary: #1a5f7a;
            --secondary: #2a9d8f;
            --light: #e9f5f9;
            --dark: #1d3557;
            --accent: #e63946;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: #333;
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 95, 122, 0.85), rgba(42, 157, 143, 0.8)), url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--dark);
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }
        .card-hover:hover .service-icon {
            color: var(--primary);
        }
        .btn-primary-custom {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary);
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px 8px;
            background: var(--light);
            border-radius: 5px;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background: var(--secondary);
            color: white;
            border-color: var(--secondary);
        }
        .contact-info i {
            width: 40px;
            color: var(--secondary);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--light);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        .stats-label {
            font-size: 1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .news-card {
            border-left: 5px solid transparent;
            transition: all 0.3s ease;
        }
        .news-card:hover {
            border-left-color: var(--accent);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 8px;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                text-align: center;
            }
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
