        /* Services Header */
        .services-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .services-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .services-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 220px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.4rem;
            min-height: 42px;
        }
        
        .service-description {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
            flex-grow: 1;
        }
        
        /* Action Buttons */
        .service-actions {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }
        
        .btn-call, .btn-whatsapp {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            font-weight: 600;
            border-radius: 8px;
            transition: var(--transition);
            text-decoration: none;
            font-size: 0.95rem;
        }
        
        .btn-call {
            background-color: rgb(7, 7, 58);
            color: white;
            border: 2px solid var(--primary-color);
        }
        
        .btn-call:hover {
            background-color: blue;
            color: white;
            border-color: var(--primary-dark);
        }
        
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            border: 2px solid #25D366;
        }
        
        .btn-whatsapp:hover {
            background-color: #128C7E;
            color: white;
            border-color: #128C7E;
        }
        

        
        .tooltip-text {
            position: absolute;
            right: 70px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .floating-btn:hover .tooltip-text {
            opacity: 1;
        }
        
        /* Animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .services-header {
                padding: 60px 0;
            }
            
            .services-header h1 {
                font-size: 2.2rem;
            }
            
            .service-img {
                height: 180px;
            }
            
            .service-actions {
                flex-direction: column;
            }
            
            .floating-contact {
                bottom: 20px;
                right: 20px;
            }
            
            .floating-btn {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 576px) {
            .services-header {
                padding: 40px 20px;
            }
            
            .services-header h1 {
                font-size: 1.8rem;
            }
            
            .services-header p {
                font-size: 1rem;
            }
            
            .floating-contact {
                bottom: 15px;
                right: 15px;
                gap: 10px;
            }
            
            .floating-btn {
                width: 50px;
                height: 50px;
            }
        }
        
        /* Section Divider */
        .section-divider {
            height: 4px;
            width: 80px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            margin: 0 auto 30px;
            border-radius: 2px;
        }
  .privacy-policy-section {
    background: #f9f9f9;
    color: #333;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

.privacy-policy-section .section-title {
    font-size: 36px;
    font-weight: 700;
}

.privacy-policy-section .lead {
    font-size: 18px;
    color: #555;
}

.privacy-policy-section .policy-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.privacy-policy-section .policy-item p,
.privacy-policy-section .policy-item ul {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.privacy-policy-section .policy-item ul li {
    margin-left: 20px;
    margin-bottom: 5px;
}

.privacy-policy-section a {
    color: #007bff;
    text-decoration: none;
}

.privacy-policy-section a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 576px) {
    .privacy-policy-section .section-title {
        font-size: 28px;
    }
    .privacy-policy-section .lead {
        font-size: 16px;
    }
    .privacy-policy-section .policy-item h3 {
        font-size: 18px;
    }
    .privacy-policy-section .policy-item p,
    .privacy-policy-section .policy-item ul {
        font-size: 15px;
    }
}
