
        :root {
            --primary-color: #B284BE;
            --secondary-color: #6a1b9a;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .hero-section {
            background-color: #B284BE;
            color: white;
            padding: 100px 0;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .counter-section {
            background-color: var(--light-color);
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        .service-card {
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .review-card {
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .contact-info {
            list-style: none;
            padding-left: 0;
        }
        
        .contact-info li {
            margin-bottom: 15px;
        }
        
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
            width: 20px;
        }
        
        footer {
            background-color: #343a40;
            color: white;
        }
        
        footer a {
            color: #e9ecef;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer a:hover {
            color: var(--primary-color);
        }
        
        .footer-heading {
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
