
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        section {
            padding: 80px 0;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/787961/pexels-photo-787961.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            padding: 150px 0;
            color: white;
        }
        .counter-section {
            background-color: #f8f9fa;
        }
        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            color: #e83e8c;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: #e83e8c;
            margin-bottom: 20px;
        }
        .card {
            transition: transform 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .testimonial-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
        }
        .newsletter-section {
            background-color: #f8f9fa;
        }
        footer {
            background-color: #343a40;
            color: white;
            padding: 60px 0 20px;
        }
        footer a {
            color: #e0e0e0;
            text-decoration: none;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .btn-primary {
            background-color: #e83e8c;
            border-color: #e83e8c;
        }
        .btn-primary:hover {
            background-color: #d01a6c;
            border-color: #d01a6c;
        }
        .text-primary {
            color: #e83e8c !important;
        }
