
        :root {
            --hicare-pink: #e91e63;
            --hicare-purple: #4a235a;
            --hicare-blue: #2196F3;
            --hicare-green: #4CAF50;
            --hicare-orange: #FF9800;
            --hicare-teal: #009688;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--hicare-purple), var(--hicare-pink));
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.2;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            color: var(--hicare-purple);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--hicare-pink), var(--hicare-purple));
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 50px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--hicare-pink), var(--hicare-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .topic-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .topic-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }
        
        .topic-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--hicare-green);
        }
        
        .vaccine-badge {
            display: inline-block;
            background-color: rgba(33, 150, 243, 0.1);
            color: var(--hicare-blue);
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .vaccine-badge:hover {
            background-color: var(--hicare-blue);
            color: white;
            transform: scale(1.05);
        }
        
        .mode-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 3px solid var(--hicare-pink);
        }
        
        .mode-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .mode-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--hicare-pink);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--hicare-purple), var(--hicare-pink));
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
        }
        
        .btn-custom {
            background: white;
            color: var(--hicare-pink);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-custom:hover {
            background: var(--hicare-purple);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
  