     /* Base styles */
     body {
        background-color: #1a1a1a;
        font-family: 'Montserrat', Arial, sans-serif;
        color: white;
        margin: 0;
        padding: 20px;
    }
    
    /* Container for the entire grid */
    .services-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 0;
    }
    
    /* Card styles */
    .services-card {
        background-color: #333333;
        border-radius: 20px;
        padding: 20px;
        flex: 1;
        min-width: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    /* Service item styles */
    .service-item {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .service-item:last-child {
        margin-bottom: 0;
    }
    
    /* Icon container */
    .service-icon {
        width: 80px;
        height: 80px;
        border-radius: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    /* Purple icon background */
    .icon-purple {
        background-color: #ad0089;
    }
    
    /* Teal icon background */
    .icon-teal {
        background-color: #00aca6;
    }
    
    /* Icon styling */
    .service-icon svg {
        width: 40px;
        height: 40px;
        fill: white;
    }
    
    /* Service text */
    .service-text {
        font-size: 22px;
        font-weight: 500;
        line-height: 1.3;
    }
    
    /* Dots navigation at bottom */
    .dots-nav {
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        margin-top: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
    }
    
    .dot.active {
        background-color: white;
    }
    
    .dot.purple {
        background-color: #ad0089;
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
        .services-container {
            flex-direction: column;
        }
        
        .service-item {
            margin-bottom: 25px;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 12px;
        }
        
        .service-text {
            font-size: 18px;
        }
    }